Running Code on client pc

blabore

Freshman
Joined
Jan 31, 2002
Messages
48
Location
Austin, TX
I'm looking for a way to run compiled code on the client end of a web application. Back in the days of VB6 I would've whipped up a simple ActiveX control, but it appears the only way you can do that now in .Net is with a C++ MFC control (which isn't worth the effort). Is there any workaround to this situation in .Net? I saw some posts referencing winforms user controls, but didn't see anyone who has actually used one in a web page. Any help would be appreciated.
 
blabore said:
I'm looking for a way to run compiled code on the client end of a web application. Back in the days of VB6 I would've whipped up a simple ActiveX control, but it appears the only way you can do that now in .Net is with a C++ MFC control (which isn't worth the effort). Is there any workaround to this situation in .Net? I saw some posts referencing winforms user controls, but didn't see anyone who has actually used one in a web page. Any help would be appreciated.
you can create a COM control in .NET. . . look at the help
 
Back
Top