hi,i have 2 projects in my solution file.One of the project is bascially to keep all my userControls,say UCLibraryProj in the namespace userControlLibrary and another is mainProject which will consume the userControls.i have built the all the projects successfully
Now in my main project i have done add reference to "UCLibraryProj" . Also mainProject/bin contains the dll of UCLibraryProj.I am trying to use this usercontrol in page1.aspx . i have added "using userControlLibrary" to include the namespace for the userControl.I get the intellisense for the class inside UserControlLibrary namespace.However when i try to run it it gives me the error saying 'src' not specified?
page1.aspx(inside mainProject)
%@ Register Assembly="UCLibrary" Namespace="UserControlLibrary" TagPrefix="UCL" TagName="reqForm" %>
What do i give in source attribute here,since i am referecing the assembly here? Also IS IT NECESSARY to have this UCLibrary registered inside global.asax or something ?