HTML 服務器控件是服務器可理解的 Html 標簽。
Html 服務器控件
ASP.Net 文件中的 HTML 元素默認作為文本進行處理。為了使這些元素可編程化,需要向 Html 元素添加 runat="server" 屬性。該屬性指示該元素應作為服務器控件進行處理。
注釋:所有 Html 服務器控件必須位於帶有 runat="server" 屬性的 <form> 標簽內!
注釋:ASP.Net 要求所有 Html 元素必須正確關閉和嵌套。看到本信息,說明該文章來源於網頁教學網www.webjx.com,如果文章不完整請到網頁教學網webjx.com浏覽!
Html 服務器控件 |
描述 |
HtmlAnchor
控制 <a> Html 元素
HtmlButton
控制 <button> Html 元素
HtmlForm
控制 <form> Html 元素
HtmlGeneric
控制其他未被具體的 HTML 服務器控件規定的 Html 元素,比如 <body>, <div>, <span> 等等。
HtmlImage
控制 <image> Html 元素
HtmlInputButton
控制 <input type="button"> 、<input type="submit"> 以及 <input type="reset"> Html 元素
HtmlInputCheckBox
控制 <input type="checkbox"> Html 元素
HtmlInputFile
控制 <input type="file"> Html 元素
HtmlInputHidden
控制 <input type="hidden"> Html 元素
HtmlInputImage
控制 <input type="image"> Html 元素
HtmlInputRadioButton
控制 <input type="radio"> Html 元素
HtmlInputText
控制 <input type="text"> 和 <input type="passWord"> Html 元素
HtmlSelect
控制 <select> Html 元素
HtmlTable
控制 <table> Html 元素
HtmlTableCell
控制 <td> 和 <th> Html 元素
HtmlTableRow
控制 <tr> Html 元素
HtmlTextArea
控制 <textarea> Html 元素