use .Net Framework components in IE

  • Thread starter Thread starter Anton Sommer
  • Start date Start date
A

Anton Sommer

Hello folks,

how can I run a .NET Framework component in IE. Simply specifying a
runat="client" attribute in does not work.I mean really running a few .Net
Routines on the client it should be possible somehow.

Thanks


Anton
 
Thank you Drebin for responding,

well I haven't seen it that way yet. I thought that the .NET functionallity
of IE means that you can execute limited code on the client like java or
JavaScript.

Does your answer mean that the .NET functionallity of IE works like ActiveX
controls, what means that you can only access a control when it is installed
clientside?

Thanks

Anton
 
If you want to run code on the client, you'll need the .NET framework
installed on the client.
If you want to run code on the client, the easiest way is to create a
windows forms application.
If you're sure you want it to be an ASP.NET app, you could use these
articles to help you with the somewhat complicated process of getting .NET
code to run from within the browser:
http://samples.gotdotnet.com/quickstart/winforms/doc/WinFormsIeSourcing.aspx
http://msdn.microsoft.com/msdnmag/issues/02/06/Rich/default.aspx
 
Back
Top