I have a WebUserControl that is placed on the page in the HTML view of the ASP page:
Code:
<uc1:ModuleControls id=ModuleControls1 runat="server" CallingModule="<%#catNum%>">
It works...sorta...but catNum is placed in this spot *before* the constructor is called for the UserControl, which is where the variable is set....so 0 is placed here every time...What am I doing wrong? Thanks!