ASP.NET中CheckBox复选框控件的使用
《ASP.NET中CheckBox复选框控件的使用》由会员分享,可在线阅读,更多相关《ASP.NET中CheckBox复选框控件的使用(3页珍藏版)》请在装配图网上搜索。
1、我们可以使用两种类型的 ASP.NET控件将复选框添加到 Web窗体页上:单独的 CheckBox控件或CheckBoxList控件。两种控件都为用户提供了一种输入布尔型数据(真 或假、是或否)的方法。 这里我们单独使用 CheckBox ,先来看看它的属性 属性描述.NETAutoPostBack规 定在Checked属性已改变后,是否立即向服务器回传表单。默认是false。1CausesValidation 规定点击Button控件时是否执行验证。2Checked规定是否已选中该复选框。1InputAttributes 该 CheckBox控件的Input元素所用的属性名和值的集合。
2、 2LabelAttributes 该 CheckBox 控件的Label元素所用的属性名和值的集合。 2runat规定该控件是服务器控件。必须被设 置为"server"。1Text与复选框关联的文本标签。 仃extAlign与复选框关联的文本标签的对 齐方式。(right或left)1ValidationGroup在CheckBox控件回发到服务器时要进行验证的控 件组。2OnCheckedChanged当Checked属性被改变时,被执行函数的名称。 让我们来做个简单的示例来演示一下 前台代码: <%@ Page Language="C#" AutoEventWireup
3、="true" CodeFile="CheckBox.aspx.cs" Inherits="WebControls_CheckBox" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http:〃www.w3.org/1999/xhtml"> <head runat="server"> <title&g
4、t;</title> <style type="text/css"> .style1 { width: 107px; } </style> </head> <body> <form id="form1" runat="server"> <div> <h3>CheckBox(复选框)</h3> <table style="width: 100%;
5、"> <tr> <td class="style1"> 属性 </td> <td> 值</td> <td> 作用 </td> </tr> <tr> <td class="style1"> Checked</td> <
6、td> ture|false</td> <td> 选中斗犬态|未选状态 </td> </tr> </table> <hr/> 请选择你喜欢的运动: <asp:CheckBox ID="chkSport" runat="server" Text=" 篮球"Checked="true" /> <asp:CheckBox
7、 ID="chkSport2" runat="server" Text=" 足球"/> <asp:CheckBox ID="chkSport3" runat="server" Text=" 地瓜"/> <br/> <asp:Button ID="btnSubmit" runat="server" Text="提 交 onclick="btnSubmit_Click" /> <hr/> 你选择的爱好是:<asp:Label ID="lblState" runat="s
8、erver"></asp:Label> </div> </form> </body> </html> 后台代码: using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class WebControls_CheckBox : System.Web.UI.Page { &n
9、bsp;protected void Page_Load(object sender, EventArgs e) { } protected void btnSubmit_Click(object sender, EventArgs e) { lblState.Text = string.Empty; if (chkSport.Checked) { lblState.Text = lblState.Text + chkSport.Text; } if (chkSp
10、ort2.Checked) { if (lblState.Text.Length == 0) { IblState.Text = chkSport2.Text; } else { IblState.Text = IblState.Text + "," + chkSport2.Text; } } if (chkSport3.Checked) { if (IblState.Text.Length == 0) { lblState.Text = chkSport2.Text; } else { lblState.Text = lblState.Text + "," + chkSport3.Text; } } } }
- 温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。