Windows Forms controls in a web page

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

Is it possible to embed a Windows Forms Control written
in C# into a web page like an ActiveX or java applet can
be?
 
* "Jerry said:
Is it possible to embed a Windows Forms Control written
in C# into a web page like an ActiveX or java applet can
be?

J# Browser Controls provide developers with a way to migrate their existing
Java applet source code to run within the context of the .NET Framework

<http://www.microsoft.com/downloads/details.aspx?FamilyID=325a8f15-fe7b-4087-aa46-6d3e1b6108e0>

MSDN documentation link:

<http://msdn.microsoft.com/library/e...ingJavaAppletsToMicrosoftJBrowserControls.asp>

For .NET 1.0, controls as ActiveX are only supported hosted in MS IE 5+6:

<http://support.microsoft.com/default.aspx?scid=kb;en-us;Q311334>
<http://support.microsoft.com/default.aspx?scid=kb;en-us;q317346>

Using Windows Forms Controls in Internet Explorer:

<http://msdn.microsoft.com/msdnmag/issues/02/06/rich/rich.asp>
 
Hi Jerry,

In .NET, We can easily host an WinForm Control in a WebPage, You may
look at this quikstart tutorial to get a rough idea about this feature:

http://samples.gotdotnet.com/quickstart/winforms/doc/WinFormsIeSourcing.aspx

You may also read the Technical Artical written by Jay Allen for some
further information.
"Host Secure, Lightweight Client-Side Controls in Microsoft Internet
Explorer"
http://msdn.microsoft.com/msdnmag/issues/02/01/UserCtrl/default.aspx

Thanks!

Happy holidays!

Ying-Shen Yu [MSFT]
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security

This posting is provided "AS IS" with no warranties and confers no rights.
This mail should not be replied directly, "online" should be removed before
sending.
 
Back
Top