How to declare this in codebehind

  • Thread starter Thread starter TJS
  • Start date Start date
T

TJS

this is the code in the html

<tabs:menu id="Menu1" runat="server"></tabs:menu>

how do I declare "Menu1" in the codeBehind ??
 
What <tab:menu> element represents. If it is a user control, the it will be
automatically declared in code behind as user control. If it is custom
element, then you can declare it as htmlgenericecontrol.
 
Back
Top