deepapoulosem
New member
- Joined
- Dec 29, 2006
- Messages
- 4
- Programming Experience
- Beginner
I have developed a winforms usercontrol in c#.net . I want to host it in a webpage or any ActiveX container.Plz help me
The answer is that you don't. It's a WebForms app so you need to create a WebForms UserControl.
That's not a proper statement or question so I don't really know what you're trying to say.Whether a WebForms UserControl can be used in a VB.Net application
That's not a proper statement or question so I don't really know what you're trying to say.
For clarity, if you're creating a Windows Forms application then you need to inherit the System.Windows.Forms.UserControl class. If you're creating a Web Forms, i.e. ASP.NET, application then you need to inherit the System.Web.UI.UserControl class. They are two different classes performing the same function in two different environments.