I have a usercontrol which I want to put in a webpage. I have created a user control, put some stupid stuff on it and used in a webpage succesfully by using the following line in an htm page:
But when I create a new project which compiles to a dll and then reference's that dll in my usercontrol it doesn't work. I think it is because the control is running client side and the web black majic isn't sending the needed references to the client to use.
Does anyone know what my problem is and how to fix this issue??
Thanks
Eric
ArshadPosted May 15, 2008, 2:20 PM
EricPosted May 15, 2008, 10:11 AM
-------------
using MyLibrary;
public class MyUserControl : UserControl
{
private MyLibarary.ExternalClass m_externalClass;
public MyUserControl()
{
m_externalClass = new MyLibrary.ExternalClass();
}
}
-------------
then in my asp page I want to use MyUserControl. do I use the ref command to include MyLibrary and MyUserControl?
Thanks
Eric
ArshadPosted May 13, 2008, 5:19 PM
With Regards
Khan