zoukankan      html  css  js  c++  java
  • 基本的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

  • 相关阅读:
    少儿编程之图形编程
    少儿编程是什么?要学吗?如何学?
    AlloyDesigner 使用
    轮播总结
    git实用攻略
    git subtree用法(转)
    vue 插值,v-once,v-text, v-html
    webpack的学习准备工作
    webstorm中github的配置
    less 安装和webstorm的使用
  • 原文地址:https://www.cnblogs.com/spilledlight/p/4840957.html
Copyright © 2011-2022 走看看