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
新聞熱點
疑難解答