How to view windows form control library in a web page

  • Thread starter Thread starter ahmed fathi
  • Start date Start date
A

ahmed fathi

I created new project From VC++ .net IDE. CLR->Windows forms control library.
I need to view the control in a web page but I can't.
Your advice is Higly appreciated
 
ahmed said:
I created new project From VC++ .net IDE. CLR->Windows forms control
library. I need to view the control in a web page but I can't.
Your advice is Higly appreciated

You need to create a web or Silverlight project instead. Windows.Forms
controls can't be hosted in web browsers.
 
IE supports Hosting Winform controls but if your control is written in C++,
you can not guarantee VC Runtime is on the viewer's machine. And the default
security setting is very restrictive.
 
Back
Top