HTML Server Controls
HtmlControls
This control can contain any arbitrary HTML, and therefore it’s very flexible in nature. However, it is not compatible with all the browsers.
Its equivalent HTML element: <input type=”button”>
HtmlAnchor
Creates a Web navigation link. Note that the HtmlAnchor control generates a post operation.
Its equivalent HTML element: <a>
HtmlForm
Html form is defined as the values of controls within the form that are posted to the server when the form is submitted.
Its equivalent HTML element: <form>
HtmlInputButton
This button is supported on all the browsers while performing a task.
Its equivalent HTML element: <input type=”button”>
HtmlImage
Displays an image.
Its equivalent HTML element: <img>
HtmlInputCheckBox
It creates a box that can be used to click on and off. The Checkbox control includes a label.
Its equivalent HTML element: <input type=”checkbox”>
HtmlInputFile
This allows users to specify files to be uploaded to a server
Its equivalent HTML element: <input type=”Myfile”>
HtmlInputHidden
It stores an information to a form.
Its equivalent HTML element: <input type=”hidden”>
HtmlInputImage
This works like a button but displays graphics.
Its equivalent HTML element: <input type=”image”>
HtmlInputRadioButton
Displays a button that can be turned on or off. Radio buttons are typically used to allow the user to select one item from a short list of fixed options.
Its equivalent HTML element: <input type=”radio”>
HtmlInputText
Displays the text that is entered at the time of design and can be edited by users at the time of the run or can be changed with programs. This control can also be used to create password boxes that display their values as asterisks.
Its equivalent HTML element: <input type=”text”
HtmlSelect
Displays a list of text and graphical icons.
Its equivalent HTML element: <select>
HtmlTable
Creates a table.
Its equivalent HTML element: <table>
HtmlTableCell
Creates an individual cell within a table row.
Its equivalent HTML element: <td>
HtmlTableRow
Creates an individual row within a table.
Its equivalent HTML element: <tr.>
HtmlTextArea
Displays large quantities of text used for multi-line text entry and display.
Its equivalent HTML element: <textarea>
HtmlGenericControl
Creates a basic object model (properties, methods, events) for any HTML element converted to a control
Web Server Controls
Web Server controls are similar to HTML server controls. They’re created on the server and builds complex user interfaces with ease. They require the run at=”server” attributes to work right and also provides rich programmed capabilities. The following are various Web Server Controls: -
Calendar
Displays a graphic calendar that allows users to select a date.
Ad Rotator
Displays a predefined or random sequence of images.
Checkbox
Displays a box that users can click to turn something on or off.
CheckboxList
Creates grouping of check boxes. The list control makes it easy to create multiple check boxes that belong together.
Button
It is used to perform a task.
DataGrid
Displays information, usually data-bound, in tabular form with columns. It further provides mechanisms to allow editing and sorting.
DataList
Displays information in a table with more formatting and layout options like the Repeater control. The Data List control also allows specifying editing behavior.
DropdownList
Allows users to either select from a list or enter text.
Hyperlink
Creates Web navigation links.
Image
Displays an image.
ImageButton
It incorporates an image instead of text as in Button control..
Label
Displays text that users can’t edit directly.
ListBox
Displays a list of choices. Optionally, the list can allow multiple selections.
Panel
Creates a division without borders on the form that serves as a container for other controls.
RadioButton
Displays a single button that can be turned on/off.
RadioButtonList
Creates a grouping of radio button within the group, where only one button can be selected.
Repeater
Displays information from Data set using HTML elements & controls. By repeating the elements once for each record in the Data set, specifications are made.
Table
Creates a table.
TableCell
Creates an individual cell within a table row
LinkButton
It is like a button control, with an appearance of a hyperlink.
TableRow
Creates an individual row within a table.
Textbox
Displays text that is entered at the time of design and edited by users at the time of run or changed with the help of programs.
|