您的位置:首页 > 编程语言 > ASP

ASP.net(c#)取得CheckBoxList(复选框)的值

2007-11-13 16:18 597 查看
 先写个简单,过后用CheckBoxList(复选框)实现投票系统也放上来


<!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>无标题页</title>


</head>


<body>


    <form id="form1" runat="server">


    <div>


        <br />


         <asp:CheckBoxList ID="CheckBoxList2" runat="server" Width="164px" Font-Size="Small" RepeatLayout="Flow">


            <asp:ListItem Value="Sport">体育</asp:ListItem>


            <asp:ListItem Value="Tour">旅游</asp:ListItem>


            <asp:ListItem Value="Donet">上网</asp:ListItem>


            <asp:ListItem Value="Study">学习</asp:ListItem>


        </asp:CheckBoxList><br />


    </div>


        <asp:Button ID="Button1" runat="server" Text="提交" OnClick="Button1_Click" />


    </form>


</body>


</html>


<script type="text/C#" runat = "server">


 protected void Button1_Click(object sender, EventArgs e)




    ...{


        for (int i = 0; i < this.CheckBoxList2.Items.Count; i++)




        ...{


            bool a = this.CheckBoxList2.Items[i].Selected;


            if (a)




            ...{


                Response.Write(this.CheckBoxList2.Items[i].Text);


            }


        }


    }


</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息