จากรูปเราจะเห็นแท็ค html คือ html head body form ซึ่งมันก็คือแท็ค html จริงๆ นั่นแหละ -_-"
แต่ในเมื่อ asp.net มันถูกออกแบบมาด้วย oop ฉะนั้นไม่ว่าจะเป็นส่วนไหนของ page เราสามารถ
อ้างอิงมาใช้หรือสร้างได้ โดยใช้ namespace System.Web.UI.HtmlControls ซึ่งมี class ต่างๆ ดังนี้
HtmlAnchor = HTML <a>
HtmlButton = HTML <button>
HtmlContainerControl
HtmlControl สำหรับใช้อ้างอิง object html ทุก object
HtmlEmptyTagControlBuilder
HtmlForm = HTML <form>
HtmlGenericControl สร้าง HTML tag ได้ทุกแท็ค
HtmlHead Provides = HTML head
HtmlHeadBuilder Interacts with the parser to build an HtmlHead control.
HtmlImage = HTML <img>
HtmlInputButton = HTML <input type= button>, <input type= submit>, and <input type= reset> elements on the server.
HtmlInputCheckBox = HTML <input type= checkbox>
HtmlInputControl เป็นได้หลายเท็คเช่น <input type=text>, <input type=submit>, and <input type= file> elements.
HtmlInputFile = HTML <input type= file>
HtmlInputHidden = HTML <input type=hidden>
HtmlInputImage = HTML <input type= image>
HtmlInputPassword = HTML <input type= password>
HtmlInputRadioButton = HTML <input type= radio>
HtmlInputReset = HTML <input type=reset>
HtmlInputSubmit = HTML <input type= submit>
HtmlInputText = HTML <input type= text> and <input type= password> elements on the server.
HtmlLink = HTML link
HtmlMeta = HTML <meta>
HtmlSelect = HTML <select>
HtmlSelectBuilder ไว้สร้างแท็ค <select>
HtmlTable = HTML <table> element.
HtmlTable.HtmlTableRowControlCollection เป็น Collection ของ <tr>
HtmlTableCell Represents the <td> and <th> HTML elements in an HtmlTableRow object.
HtmlTableCellCollection เป็น Collection ของ <td>
HtmlTableRow = <tr> HTML element in an HtmlTable control.
HtmlTableRow.HtmlTableCellControlCollection
HtmlTableRowCollection
HtmlTextArea = <textarea> HTML
HtmlTitle = HTML <title>