Hi all,
Some more HTML Server Controls.
HtmlInputImage - Use this when the browser does not support DHTML and/or the HtmlButton, this control is used for the <input type="image"> HTML element allowing you to Create a graphical button, i.e. you can create a button using a image, instead of a regular button.
HtmlInputRadioButton - Controls the <input type="radio">, use this to create & control radio buttons on a web page, you can group multiple radio buttons together using the 'name' property, just provide the same value, once radio buttons are grouped together, you can only select one button from that group, i.e. you are allowed to make only one choice.
HtmlInputText - Controls <input type="text"> and <input type="password"> HTML elements, text boxes are created on the page with the use of this control. When the input type is set to 'password' the values entered in the text field are masked i.e. instead of numbers and word '*' are displayed. These controls are normally used to accept inputs from the user.
HtmlSelect - Controls a <select> HTML element i.e. a drop down list box, you can also specify this drop down box to be either just a list box using the 'size property' or a multiple selection list box by using the 'multiple' property, in which case it ceases to be a drop-down box and just becomes a list box.
Any suggestions/corrections/comment welcome
Some information from
www.411asp.net