找回密码
 会员注册
查看: 155|回复: 0

asp.net中,GridView绑定的选择框CheckBox,多选后获取选中的id

[复制链接]

1389

主题

5

回帖

496万

积分

管理员

积分
4962990
发表于 2024-2-29 08:07:29 | 显示全部楼层 |阅读模式

第一种方法

-------前端
GridViewRow 中需要添加属性:DataKeyNames=“user_id” //user_id 为要获取的id

  1. <asp:GridView ID="GridView1" runat="server" DataKeyNames="user_id ">
  2. <asp:TemplateField>
  3. <ItemTemplate>
  4. <asp:CheckBox runat="server" ID="CheckBoxId">
  5. </asp:CheckBox>
  6. </ItemTemplate>
  7. </asp:TemplateField>
  8. </asp:GridView>
复制代码

-------后端

  1. string strTempValue = string.Empty;
  2. foreach (GridViewRow gvr in GridView1.Rows)
  3. {
  4. CheckBox cb = (CheckBox)gvr.FindControl("CheckBoxId"); //CheckBoxId为选择框的id
  5. if (cb.Checked)
  6. {
  7. strTempValue = strTempValue + "," + GridView1.DataKeys[gvr.RowIndex].Value.ToString();
  8. }
  9. }
复制代码

第二种方法

-------前端

  1. <asp:GridView ID="GridView1" runat="server">
  2. <asp:TemplateField>
  3. <ItemTemplate>
  4. <asp:CheckBox runat="server" ID="CheckBoxId">
  5. </asp:CheckBox>
  6. </ItemTemplate>
  7. </asp:TemplateField>
  8. <asp:BoundField DataField="UserId" HeaderText="ID">
  9. </asp:BoundField>
  10. </asp:GridView>
复制代码
  1. string strTempValue = string.Empty;
  2. foreach (GridViewRow g in GridView1.Rows)
  3. {
  4. CheckBox ck = (CheckBox)g.FindControl("CheckBoxId");
  5. if (ck.Checked == true)
  6. {
  7. //这里的Cells[1]是因为 在前端UserId列在下标为1的位置
  8. strTempValue =strTempValue + "," + g.Cells[1].Text.ToString();
  9. }
  10. }
复制代码

希望能帮到大家~~~~~~~~


来源:https://blog.csdn.net/weixin_42864782/article/details/83650395
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 会员注册

本版积分规则

QQ|手机版|心飞设计-版权所有:微度网络信息技术服务中心 ( 鲁ICP备17032091号-12 )|网站地图

GMT+8, 2024-12-26 12:20 , Processed in 0.681088 second(s), 25 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表