Link to home
Start Free TrialLog in
Avatar of CharlesBLee
CharlesBLee

asked on

Easy C# question

In Java there are applets and applications. In C#is there the equivalent of an applet for web pages?

Thanks in advance,
CB
Avatar of naveenkohli
naveenkohli

There is no applet in C# for web pages. I think in near future when browsers support .NEt framework, you may be able to write some components that could be downloaded o ver the internet to run on client machines.
yes there is
the UserControl can be put in a Web page:

<html>

<body>

<object id="UserControl1"
classid="http:Simplex.dll#Simplex.UserControl1"
height="352"
widht="440"
VIEWASTEXT
</object>

</body>

</html>
More detailed explantion can be found here:

http://www.gotdotnet.com/team/windowsforms/iesourcing.aspx
The thing they have in .NET which is similar is called WebForms as far as I know. And yes, WebForms are UserControls...

Max.
ASKER CERTIFIED SOLUTION
Avatar of Smith123go
Smith123go

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
You may use some COM with C#.