View Single Post
Old 08-04-2004, 05:56 PM   #7 (permalink)
ashish
Registered User
 
ashish's Avatar
 
Join Date: Jul 2004
Posts: 46
ashish is on a distinguished road
Hello all,

Here are a few more things about ASP.NET


HTML server controls - Normally, all HTMl elements in ASP.NET files are treated as text. HTML server controls are basically HTML tags that are processed by the web server and not the browser i.e. these are HTML tags understood by the web server.

To make a HTML server control we use the runat = "server" attribute in the <form> tag, HTML server controls can only be placed within a <form> tag. We can use the 'id' attribute in order to give the HTML server control a custom defined name.

Some very common HTML server controls are HtmlImage, HtmlButton, HtmlAnchor etc. etc.
ashish is offline   Reply With Quote