我在gridview中使用了复选框….我在第一个单元格中使用它….当我在运行时选择复选框时,我需要获取这些值…但是在选择或单击复选框时,它不是发现或价值是假的…如何在asp.net后端和c#代码中写?
<asp:TemplateField> <ItemTemplate > <asp:checkBox id="ShowAddress" runat="server" /> </ItemTemplate> </asp:TemplateField>
代码隐藏:
protected void Button1_Click(object sender,EventArgs e) { // Looping through all the rows in the GridView foreach (GridViewRow di in GridView1.Rows) { CheckBox chkBx = (CheckBox)di.FindControl("ShowAddress"); if (chkBx != null && chkBx.Checked) { /// put your code here } } }
页面加载时脚本中是否有任何实现?
有人可以帮忙吗?