HTML control classes

default

Class
Associated Tags
HtmlAnchor
<a runat="server">
HtmlButton
<button runat="server">
HtmlForm
<form runat="server">
HtmlImage
<img runat="server">
HtmlInputButton
<input type="submit" runat="server">
<input type="reset" runat="server">
<input type="button" runat="server">
HtmlInputCheckBox
<input type="checkbox" runat="server">
HtmlInputFile
<input type="file" runat="server">
HtmlInputHidden
<input type="hidden" runat="server">
HtmlInputImage
<input type="image" runat="server">
HtmlInputRadioButton
<input type="radio" runat="server">
HtmlInputText
<input type="text" runat="server">
<input type="password" runat="server">
HtmlSelect
<select runat="server">
HtmlTable
<table runat="server">
HtmlTableRow
<tr runat="server">
HtmlTableCell
<td runat="server">
<th runat="server">
HtmlTextArea
<textarea runat="server">
HtmlGenericControl
<span runat="server">
<div runat="server">
All other HTML tags

All html server control classes are inside the System.Web.UI.HtmlControls
namespace.

default