码迷,mamicode.com
首页 > Web开发 > 详细

ASP:CheckBox 获取前台的checked的属性

时间:2016-07-30 10:23:58      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

后台代码:

for (int i = 0; i < this.GvCourses.Rows.Count; i++)
{
    CheckBox chb = this.GvCourses.Rows[i].FindControl("CheckB") as CheckBox;
    if (chb.Checked)
    {
        strDelete += "," + this.GvCourses.Rows[i].Cells[0].Text;
    }
}

前台代码:

 <asp:CheckBox runat="server" ID="CheckB" /> 

 

ASP:CheckBox 获取前台的checked的属性

标签:

原文地址:http://www.cnblogs.com/lanke0/p/5720253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!