ASP.NET中 WebForm 窗体控件使用及总结【转】
原文链接:http://www.cnblogs.com/ylbtech/archive/2013/03/06/2944675.html
ASP.NET中 WebForm 窗体控件使用及总结。
1.A,运行效果图 |
Web窗体控件
1,文本框
1_1,文本框:
1_2,密码框:
1_3,文本域:
2,按钮
2_1,普通按钮:
2_2,链接按钮(假链接):LinkButton
2_3,图片按钮:
3,超链接 作用:负责页面之间的导航
HyperLink
4,标签 特点无色透明, 作用:呈现文本,方便控制
Label
5,隐藏控件
6,图片
7,上传控件
8,复选框
8_1,复选框:篮球
足球
8_2,复选框组:篮球
足球
9,单选框
9_1,单选框:男
女
9_2,单选框组:男女
10,下拉框
山东
河北
上海
11,列表框
11_1,单选,
山东
河北
内蒙古
11_2,多选,
山东
河北
内蒙古
12,面板
你好吗?
|
|||||||||
周日 | 周一 | 周二 | 周三 | 周四 | 周五 | 周六 | |||
---|---|---|---|---|---|---|---|---|---|
24 | 25 | 26 | 27 | 28 | 1 | 2 | |||
3 | 4 | 5 | 6 | 7 | 8 | 9 | |||
10 | 11 | 12 | 13 | 14 | 15 | 16 | |||
17 | 18 | 19 | 20 | 21 | 22 | 23 | |||
24 | 25 | 26 | 27 | 28 | 29 | 30 | |||
31 | 1 | 2 | 3 | 4 | 5 | 6 |
13,PlaceHolder(像Panel的面板)
你好吗?
|
|||||||||
周日 | 周一 | 周二 |
周三 |
周四 | 周五 | 周六 | |||
---|---|---|---|---|---|---|---|---|---|
24 | 25 | 26 | 27 | 28 | 1 | 2 | |||
3 | 4 | 5 | 6 | 7 | 8 | 9 | |||
10 | 11 | 12 | 13 | 14 | 15 | 16 | |||
17 | 18 | 19 | 20 | 21 | 22 | 23 | |||
24 | 25 | 26 | 27 | 28 | 29 | 30 | |||
31 | 1 | 2 | 3 | 4 | 5 | 6 |
1.B,源代码 |
<div>
<h3>Web窗体控件</h3>
1,文本框<br />
1_1,文本框:<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<br />
1_2,密码框:<asp:TextBox ID="TextBox2" runat="server" TextMode="Password"></asp:TextBox>
<br />
1_3,文本域:<asp:TextBox ID="TextBox3" runat="server" TextMode="MultiLine"></asp:TextBox>
<br />
<br />
2,按钮<br />
2_1,普通按钮:<asp:Button ID="Button1" runat="server" Text="Button" />
<br />
2_2,链接按钮(假链接):<asp:LinkButton ID="LinkButton1" runat="server"
PostBackUrl="~/MuDiYeMian.aspx">LinkButton</asp:LinkButton>
<br />
2_3,图片按钮:<asp:ImageButton ID="ImageButton1" runat="server" Height="28px"
ImageUrl="http://images.cnblogs.com/cnblogs_com/dt520/882776/o_%e6%8d%95%e8%8e%b7.PNG" PostBackUrl="~/MuDiYeMian.aspx" Width="149px" />
<br />
<br />
3,超链接 作用:负责页面之间的导航<br />
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="~/MuDiYeMian.aspx">HyperLink</asp:HyperLink>
<br />
<br />
4,标签 特点无色透明, 作用:呈现文本,方便控制<br />
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
<br />
<br />
5,隐藏控件<br />
<asp:HiddenField ID="HiddenField1" runat="server" />
<br />
6,图片<br />
<asp:Image ID="Image1" runat="server" ImageUrl="http://images.cnblogs.com/cnblogs_com/dt520/882776/o_%e6%8d%95%e8%8e%b7.PNG" />
<br />
<br />
7,上传控件<br />
<asp:FileUpload ID="FileUpload1" runat="server" />
<br />
<br />
8,复选框<br />
8_1,复选框:<asp:CheckBox ID="CheckBox1" runat="server"
Text="篮球" />
<asp:CheckBox ID="CheckBox2" runat="server" Text="足球" />
<br />
8_2,复选框组:<asp:CheckBoxList ID="CheckBoxList1" runat="server"
RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem>篮球</asp:ListItem>
<asp:ListItem>足球</asp:ListItem>
</asp:CheckBoxList>
<br />
<br />
9,单选框<br />
9_1,单选框:<asp:RadioButton ID="RadioButton1" runat="server" Text="男"
ValidationGroup="sex" />
<asp:RadioButton ID="RadioButton2" runat="server" Text="女"
ValidationGroup="sex" />
<br />
9_2,单选框组:<asp:RadioButtonList ID="RadioButtonList1" runat="server"
RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem Selected="True">男</asp:ListItem>
<asp:ListItem>女</asp:ListItem>
</asp:RadioButtonList>
<br />
<br />
10,下拉框<br />
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem>山东</asp:ListItem>
<asp:ListItem>河北</asp:ListItem>
<asp:ListItem>上海</asp:ListItem>
</asp:DropDownList> <br />
<br />
11,列表框<br />
11_1,单选,<asp:ListBox ID="ListBox1" runat="server">
<asp:ListItem>山东</asp:ListItem>
<asp:ListItem>河北</asp:ListItem>
<asp:ListItem>内蒙古</asp:ListItem>
</asp:ListBox>
11_2,多选,<asp:ListBox ID="ListBox2" runat="server" SelectionMode="Multiple">
<asp:ListItem>山东</asp:ListItem>
<asp:ListItem>河北</asp:ListItem>
<asp:ListItem>内蒙古</asp:ListItem>
</asp:ListBox>
<br />
<br />
12,面板<br />
<asp:Panel ID="Panel1" runat="server" BackImageUrl="http://images.cnblogs.com/cnblogs_com/dt520/882776/o_%e6%8d%95%e8%8e%b7.PNG"
Height="200px">
你好吗?<br />
<asp:Calendar ID="Calendar1" runat="server"></asp:Calendar>
</asp:Panel> <br />
13,PlaceHolder(像Panel的面板)<br />
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
你好吗?<br />
<asp:Calendar ID="Calendar2" runat="server"></asp:Calendar> </asp:PlaceHolder>
</div>
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
ASP.NET中 WebForm 窗体控件使用及总结【转】的更多相关文章
- (转)客户端触发Asp.net中服务端控件事件
第一章. Asp.net中服务端控件事件是如何触发的 Asp.net 中在客户端触发服务端事件分为两种情况: 一. WebControls中的Button 和HtmlControls中的Type为su ...
- asp.net中的ListBox控件添加双击事件
问题:在Aspx页里的ListBox A中添加双击事件,将选中项添加到另一个ListBox B中,双击ListBox B中的选中项,删除当前选中项 页面: <asp:ListBox ID=&qu ...
- ASP.NET中的chart控件绑定SQL Server数据库
网上很多的chart控件的实例都没有绑定数据库,经过一番摸索后,终于实现了chart控件绑定数据库. 首先,在Visual Studio中建立一个网站,新建一个WebForm项目,名称为ChartTe ...
- asp.net中的CheckBox控件的使用
CheckBox控件中的最重要属性就是checked属性了 下面就是使用checked属性的一个小应用; 先建立一个wed窗体:在窗体中写下这些代码: <%@ Page Language=&qu ...
- asp.net中的GridView控件的部分知识点
<PagerTemplate> <br /> <asp:Label ID="lblPage" runat="server" Tex ...
- ASP.NET中的验证控件
ASP.NET提供了如下的控件: RequiredFieldValidator: 字段必填 (ControlTovalidate设定要验证的控件) RangeValidator: 值在给定的最大值,最 ...
- asp.net中自定义验证控件
在windows2003中,可能iis版本太底,不支持TextBox的类型设为Number类型,所以会报错,所以去掉后直接用验证控件来控制必须输入数字好了. <asp:RegularExpres ...
- ASP.NET中的另类控件
首先看一个aspx文件里的部分内容: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " ...
- ASP.NET中使用DataGrid控件按照条件显示GridView单元格的颜色
问题描述: 我在做一个关于信用卡管理系统时遇到一个问题:信用卡内金额低于100元时,数字颜色显示为红色,其余显示为绿色 之前,尝试了修改成为模板列以及转换成Reapeater控件,甚至用了Jquery ...
随机推荐
- http://jingyan.baidu.com/article/636f38bb3eb78ad6b8461082.html
http://jingyan.baidu.com/article/636f38bb3eb78ad6b8461082.html
- Codeforces Round #329 (Div. 2)
推迟了15分钟开始,B卡住不会,最后弃疗,rating只涨一分... 水(暴力枚举) A - 2Char /******************************************** ...
- ural 1246. Tethered Dog
1246. Tethered Dog Time limit: 1.0 secondMemory limit: 64 MB A dog is tethered to a pole with a rope ...
- ZOJ 3903 Ant ZOJ Monthly, October 2015 - A
Ant Time Limit: 1 Second Memory Limit: 32768 KB There is an ant named Alice. Alice likes going ...
- ERROR 2013 (HY000): Lost connection to MySQL server at 'waiting for initial communication packet', system error: 2
ERROR (HY000): Lost connection to MySQL server at 'waiting for initial communication packet', system ...
- SQL 标量函数-----日期函数datediff()、 day() 、month()、year()
select day(createtime) from life_unite_product --取时间字段的天值 select month(createtime) from life_uni ...
- JAVA排序算法
]; ; i < ; i++){ sort[i] = ran.nextInt(); } System.out.print(;i<sort.length;i++){ ;j<sort ...
- iOS开发项目之一 [ 项目流程]
项目流程 *人员配置 *客户端(iOS工程师,Android工程师) *前端 h5 *后台人员(php,java,net) *提供接口(请求地址.请求参数,请求方式,接口文档) *UI UE * 效果 ...
- Spark RDD Operations(1)
以上是对应的RDD的各中操作,相对于MaoReduce只有map.reduce两种操作,Spark针对RDD的操作则比较多 ************************************** ...
- thinkphp框架中session常识
在看别人代码时候,发现他,在tp框架中使用session没有些session_start();然后我去查看了手册初始化设置方法 无需手动调用,在App类的初始化工作结束后会自动调用,通常项目只需要配置 ...