ASP.NET - HTML Server
The HTML server controls are basically the standard HTML controls enhanced to enable server side processing. The HTML controls such as the header tags, anchor tags, and input elements are not processed by the server but are sent to the browser for display. They are specifically converted to a server control by adding the attribute runat="server" and adding an id attribute to make them available for server-side processing. For example, consider the HTML input control: <input type = "text" size = "40" > It could be converted to a server control, by adding the runat and id attribute: <input type = "text" id = "testtext" size = "40" runat = "server" > Advantages of using HTML Server Controls Although ASP.NET server controls can perform every job accomplished by the HTML server controls, the later controls are useful in the following cases: Using static tables for layout purposes.