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>
Table、TableRow、TableCell ------ <table>、<tr>、<td>或<th>
原文链接:
http://blog.csdn.net/spilledlight/article/details/48711581
新闻热点
疑难解答