码迷,mamicode.com
首页 > 其他好文 > 详细

GridView中使用CheckBox

时间:2018-02-07 21:25:57      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:article   pop   idv   ted   .net   check   gpo   rgs   hid   

asp.net中checkbox是向server提交时才干触发事件

把该控件的autopostback设置为true。才干响应事件


?protected void Checkbox_CheckedChanged1(object sender, EventArgs e)
? ? ? ? {
? ? ? ? ? ? string id = string.Empty;
? ? ? ? ? ? foreach (GridViewRow gr in this.newsTable.Rows)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? CheckBox CB = (CheckBox)gr.FindControl("ChkItem");
? ? ? ? ? ? ? ? if (CB.Checked)
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? id += this.newsTable.DataKeys[gr.RowIndex]["InfoTableOID"].ToString();
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
? ? ? ? ? ? this.hidden.Value = id;
? ? ? ? ? ??
? ? ? ? }

GridView中使用CheckBox

标签:article   pop   idv   ted   .net   check   gpo   rgs   hid   

原文地址:https://www.cnblogs.com/llguanli/p/8428170.html

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