After a brief introduction to ASP.net 2.0, let's briefly introduce some HTML server controls. Previous article: asp.net Getting Started Tutorial: asp.net 2.0 navigation
HTML server controls are HTML tags that the server can understand.
HTML server Control
The HTML elements in the ASP.net file are processed by default as text. To make these elements programmable, you need to add the runat= "server" attribute to the HTML element. This property indicates that the element should be processed as a server control.
Note: All HTML server controls must be in a runat= with the "server" attribute
Tags inside!
Note: asp.net requires all HTML elements to be properly closed and nested.
HTML server Control |
Description |
HtmlAnchor |
Control <a> HTML Elements |
HtmlButton |
Control <button> HTML Elements |
HtmlForm |
Control <form> HTML Elements |
Htmlgeneric |
Controls other HTML elements that are not specified by the specific HTML server control, such as <body>, <div>, <span>, and so on. |
HtmlImage |
Control <image> HTML Elements |
HtmlInputButton |
Control <input type= "button" >, <input type= "Submit" > and <input type= "reset" > HTML elements |
HtmlInputCheckBox |
Control <input type= "checkbox" > HTML elements |
HtmlInputFile |
Control <input type= "file" > HTML elements |
HtmlInputHidden |
Control <input type= "hidden" > HTML elements |
HtmlInputImage |
Control <input type= "image" > HTML elements |
HtmlInputRadioButton |
Control <input type= "Radio" > HTML elements |
HtmlInputText |
Control <input type= "text" > and <input type= "password" > HTML elements |
HtmlSelect |
Control <select> HTML Elements |
HtmlTable |
Control <table> HTML Elements |
HtmlTableCell |
Control <td> and <th> HTML elements |
HtmlTableRow |
Control <tr> HTML Elements |
HtmlTextArea |
Control <textarea> HTML Elements |