zoukankan      html  css  js  c++  java
  • webform控件以及使用

    文本类:

    <input type="text"/>               

    <input type="password"/>     --textmode="password"

    <textarea></textarea>   --textmode="multline'

    <input type="hidden"/>

    按钮类:

    <input type="button"/>     --没有此控件

    <input type="reset"/>       --没有此控件

    <input type="submit"/>

    <input type="image"/>

    选择类:

    <input type="radio"/ id="a"><label for="a"></label>

    <input type="checkbox"/>

    <input type="file"/>

    <select>

      <option></option>

      <option></option>

    </select>

    简单控件:
    Label
    Literal
    TextBox TextMode="" Visible="false" Enabled="false"
    HiddenFiled
    Button
    ImageButton

    复合控件:
    radio:radioButton radioButtonList 单选                -- GroupName="",对应Html中的name
    checkbox:checkbox checkboxList 多选
    select option: DropDownList 单选 ListBox 多选                   --AutoPostBack="true" 此属性才可在后台调用DropDownList的方法

  • 相关阅读:
    stm32ADC+DMA串口发送实验
    凑算式
    全排列
    字符串相同
    判断值相同
    插入加号求最小值
    动态规划递归—最小子段和
    动态规划-最小子段和
    进程的描述和进程的创建
    系统调用下
  • 原文地址:https://www.cnblogs.com/m110/p/8053537.html
Copyright © 2011-2022 走看看