The HTML server controls are client side controls used for server processing, such as header tags, anchor tags, and input elements are not processed by the server but are sent to the browser for display. Adding attribute runat="server" these are particularly converted to a server control.
For example, consider the HTML input control:
<input type="text" size="40">
<input type="text" id="testtext" size="40" runat="server">
Advantages of using HTML Server Controls
Even though the job accomplished by the HTML server controls can also be performed by ASP.NET server controls.
0 Comment(s)