HTML Controls in ASP.
NET
Text Field
Gives the user an input area on an HTML form.
Text Area
Used for multi-line text input.
Password Field
An input area on an HTML form that masks typed characters as asterisks.
File Field
Allows the user to select a file from their local machine using a Browse button.
CheckBox
Gives the user a checkbox that they can select or clear.
Radio Button
Used to offer two or more options, and allows the user to choose one of the options.
Table
Allows you to present information in a tabular format on an HTML form.
Image
Displays an image on the HTML form.
ListBox
Displays a list of items to the user. You can set the size from two or more to specify how many items you
wish show. If there are more items than will fit within this limit, a scroll bar is automatically added to this
control.
Dropdown
Displays a list of items to the user, but only one item at a time will appear. The user can click a down arrow
from the side of this control and all list items will be displayed.
Horizontal Rule
Displays a horizontal line across the HTML page.
Button
It is used to create HTML form button.
Reset Button
Resets all other HTML form elements on a form to a default value.
Submit Button
Automatically POSTS the form data to the specified page listed in the Action attribute in the FORM tag.