how to write C# Applet, display it in a web page and the requirement?
-
how to write C# Applet, display it in a web page and the requirement? Thank in advance for your help. where ?documentation and tuto -=zoltx=-
Basically, it's possible to run a .NET assembly into a IE6-hosted web page by adding these tags :
<object id="myCtl"
classid="http://www.mycode.Microsoft.com/mycode.dll#myClass">
</object>where mycode.dll is the assembly filename, and myClass is the entry point. Use http://127.0.0.1/... for local assemblies (you've got to put the assembly in your \wwwroot folder, if you are using IIS). More info here[^].
-
how to write C# Applet, display it in a web page and the requirement? Thank in advance for your help. where ?documentation and tuto -=zoltx=-
check this link which has sample, http://www.codeguru.com/forum/showthread.php?s=&threadid=228806&highlight=C+applet or search Codeguru , forums in C# section only with keyword "C# applets" -Paresh
-
Basically, it's possible to run a .NET assembly into a IE6-hosted web page by adding these tags :
<object id="myCtl"
classid="http://www.mycode.Microsoft.com/mycode.dll#myClass">
</object>where mycode.dll is the assembly filename, and myClass is the entry point. Use http://127.0.0.1/... for local assemblies (you've got to put the assembly in your \wwwroot folder, if you are using IIS). More info here[^].
-
Basically, it's possible to run a .NET assembly into a IE6-hosted web page by adding these tags :
<object id="myCtl"
classid="http://www.mycode.Microsoft.com/mycode.dll#myClass">
</object>where mycode.dll is the assembly filename, and myClass is the entry point. Use http://127.0.0.1/... for local assemblies (you've got to put the assembly in your \wwwroot folder, if you are using IIS). More info here[^].