zimcoder Level: VB Lord

 Registered: 27-10-2003 Posts: 225
|
Re: Asp.net
Every ASP.NET server control is identified as a sever control by the "runat" attribute this attribute is set to server like this
<asp:Button id="Mybutton" runat="server" this will identify all server controls..
In any case all controls on a page are added to the controls collection of the page.
____________________________
BrainBench ADO.NET and ASP.NET Certified Developer
 
|