views:

81

answers:

4

Is there a way to embed a WinForms app in a web page (assuming the browser is running on a machine with .NET)?

+1  A: 

I think what you want is ClickOnce.

Daniel A. White
No... I want the WinForms app to live inside a web page... not just be launched / installed from the web.
JoelFan
That's not possible. You could do it with ActiveX.
Daniel A. White
Or ActiveX.......
Gurdas Nijor
+1  A: 

Based on your comment above, you might want to convert to Silverlight-

Gurdas Nijor
A: 

You can embed winforms controls in a page, but it only works on IE.

Joel Coehoorn
Do you have any more info on that (link, etc.)?
JoelFan
A: 

You can create an ActiveX control in .Net:

http://www.c-sharpcorner.com/UploadFile/dsandor/ActiveXInNet11102005040748AM/ActiveXInNet.aspx

I'm definitely not saying you should, but you can.

MusiGenesis