基本的Web控件一

ASP.NET提供了与HTML元素相对应的基本Web控件,ASP.NET提供的基本的Web控件如下:

基本的Web控件       对应的HTML元素

Label  ---------------------------  <span>

Button  --------------------------  <input type="submit">或者<input type="Button">

TextBox  -------------------------  <input type="text">,<input type="password">,<textarea>

Checkbox  ------------------------  <input type="checkbox">

RadioButton  ---------------------  <input type="radio">

Hyperlink  -----------------------  <input type="a">

LinkButton  ----------------------  在标记<a></a>之间包含一个<Image>标记

ImageButton  ---------------------  <input type="image">

Image  ---------------------------  <img>

ListBox  -------------------------  <select size="X">,X是包含的行标记

DropDownList  --------------------  <select>

CheckBoxList  --------------------  多个<input type="checkbox">标记

RadioButtonList  -----------------  多个<input type="radio">标记

BulletedList  --------------------  <ol>的有序清单或<ul>的无序清单

Panel  ---------------------------  <div>

TableTableRowTableCell  ------  <table><tr><td><th>

原文链接:

http://blog.csdn.net/spilledlight/article/details/48711581

原文地址:https://www.cnblogs.com/spilledlight/p/4840957.html