• Webform简单控件


    一、文本类

    对应控件--表单元素

    1、文本框

    控件 TextBox--<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

    编译:<input name="TextBox1" type="text" id="TextBox1" />

    2、密码

    <asp:TextBox ID="TextBox2" TextMode="Password" runat="server"></asp:TextBox>--密码框无相应控件,由TextBox添加属性TextMode="Password"

     编译:<input name="TextBox2" type="password" id="TextBox2" />

    3、文本域

    <asp:TextBox ID="TextBox2" TextMode="MultiLine" runat="server"></asp:TextBox>--密码框无相应控件,由TextBox添加属性TextMode="MultiLine"

    编译:<textarea name="TextBox2" rows="2" cols="20" id="TextBox2">

    4、隐藏域

    控件HiddenField--<asp:HiddenField ID="HiddenField1" runat="server" value="aaa"/>

    <input type="hidden" name="HiddenField1" id="HiddenField1" value="aaa" />

    文本控件TextBox属性:

    1、Enabled:true/false--是否可用

    2、Readonly:true/false--只读

    3、MaxLength="数字长度"--长度

    4、TextMode=“”:MultiLine--文本域

    SingLine--单行

    Password--密码框

    二、按钮类

     表单元素---对应控件

    1、Button---无对应控件

    2、reset--无对应控件

    3、submit---对应Button控件

    <asp:Button ID="Button1" runat="server" Text="Button" />

    编译:<input type="submit" name="Button1" value="Button" id="Button1" />

    与WinForm中控件一样

    4、img--对应控件

    <asp:ImageButton ID="ImageButton1" runat="server" />

    属性:imageurl="路径";

    编译:<asp:ImageButton ID="ImageButton1" runat="server" />

    属性:默认为提交 type="image"

    5/超链接---控件HyperLink

    <asp:HyperLink ID="HyperLink1" runat="server">HyperLink</asp:HyperLink>

    属性:Naviguteurl="路径";

    编译:<a id="HyperLink1">HyperLink</a>

    6、控件panel--div

  • 相关阅读:
    RAC安装时,报The specified nodes are not clusterable 的解决方法
    Unix sar 命令
    Linux 修改 IP地址 和 网关
    Oracle ASM 详解
    RAC安装时需要执行4个脚本及意义
    RAC 的一些概念性和原理性的知识
    Oracle 10g RAC 启动与关闭
    Oracle RAC 修改 IP 地址
    Linux 时间同步配置
    RAC安装时,报The specified nodes are not clusterable 的解决方法
  • 原文地址:https://www.cnblogs.com/hclyz/p/6881753.html
Copyright © 2020-2023  润新知