.Net Framework 1.1
Enable Execution of Windows Forms Assemblies Originating from the Internet
Assemblies originating from the Internet zone—for example, Microsoft Windows® Forms controls embedded in an Internet-based Web page or Windows Forms assemblies hosted on an Internet Web server and loaded either through the Web browser or programmatically using the System.Reflection.Assembly.LoadFrom() method—now receive sufficient permission to execute in a semi-trusted manner. Default security policy has been changed so that assemblies assigned by the common language runtime (CLR) to the Internet zone code group now receive the constrained permissions associated with the Internet permission set. In the .NET Framework 1.0 Service Pack 1 and Service Pack 2, such applications received the permissions associated with the Nothing permission set and could not execute.
Somebody know some examples on how to embed Windows Forms controls in a Web page ?
I'm wonder if this works like a Java applet.
Update:
I received some nice comments on this subject. I didn't know that it was there on the 1.0.
-
re: .Net Framework 1.1HumanCompiler
Posted @ 5/7/2003 8:13 PM
This isn't new to 1.1, it was in 1.0 too
Here's one from GDN:
http://www.gotdotnet.com/team/windowsforms/iesourcing.aspx
re: .Net Framework 1.1 - HumanCompiler
Posted @ 5/7/2003 8:14 PM
Oops, sorry, forgot...also check out this forum for it ;)
http://www.windowsforms.net/Forums/ShowForum.aspx?tabIndex=1&tabId=41&ForumID=17
re: .Net Framework 1.1 - Chris Szurgot
Posted @ 5/8/2003 6:11 AM
If you got to the QuickStarts in the samples (or on gotdotnet.com), there's a good example that will get you started.