·您现在的位置: 云翼网络 >> 文章中心 >> 网站建设 >> 网站建设开发 >> ASP.NET网站开发 >> 基本的Web控件一

基本的Web控件一

作者:佚名      ASP.NET网站开发编辑:admin      更新时间:2022-07-23

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