我试图创建附加到按钮的事件以遍历网格视图的每一行,以将选中的值更改为 true。一旦我点击这个按钮,它是如何做到的,它会将每件事都标记为真的?
这是我开始的代码:
foreach (GridViewRow row in GridView1.Rows)
{
//I get stuck at this part
row.Cells[9].FindControl("Overwrite")
}
foreach (GridViewRow row in GridView1.Rows)
{
CheckBox b = row.Cells[9].FindControl("Overwrite") as CheckBox;
b.Checked = true;
}
在您的GridView
标记中,如果您使用 aTemplateField
来保存CheckBox
控件,那么您可以编写更简单FindControl
的代码来实际定位TextBox
控件,如下所示:
<asp:GridView ID="GridView1" runat="server" Visible="False">
<Columns>
<asp:TemplateField HeaderText="Action Item">
<ItemTemplate>
<asp:CheckBox ID="Overwrite" runat="server"></asp:CheckBox>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
现在在你的代码隐藏中,你可以这样做:
foreach (GridViewRow row in GridView1.Rows)
{
// Only check data rows, ignoring header or footer rows
if (row.RowType == DataControlRowType.DataRow)
{
CheckBox b = row.FindControl("Overwrite") as CheckBox;
if(b != null)
{
b.Checked = true;
}
}
}
注意:您不再需要Cells
索引,因为FindControl
可以搜索整行以查找名为Overwrite
.
<div class="form-group" style="display:flex; justify-content:center">
<button class="btn btn-lg btn-primary mb-3" type="submit">Sign in</button>
<div class="custom-control custom-checkbox">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1" checked="">
<label class="custom-control-label" for="customCheck1">Remember me</label>
</div>
</div>
</div>
这是一个由样式组成的示例 HTML。你可以像这样使用它/这不是这个问题的答案