不知道是什么原因造成的,我尝试了一些建议,但似乎没有帮助。我已经调试了我的应用程序数十次,并且在调试所有步骤时都不会出现问题。但是,当我发布应用程序并允许人们使用它时,是发生问题的时间,并非所有人都可以,只是随机地决定未选中复选框,并且在前端也跳过了整个过程,因此我至少需要进行验证在button_click之前会选中一个复选框,因此我知道他们必须选中一个复选框。

网格视图

 <div id="divEventDetail">
    <asp:GridView ID="grdEventDetail" runat="server" AutoGenerateColumns="False" DataKeyNames="EDID" Width="381px" OnRowDataBound="grdEventDetail_RowDataBound" GridLines="Horizontal">
    <Columns>
  <asp:TemplateField HeaderText="EventID" Visible="False">
           <ItemTemplate>
     <asp:Label ID="lblEventID" runat="server" Text='<%#     Eval("EDID") %>'></asp:Label>
           </ItemTemplate>
       </asp:TemplateField>
       <asp:TemplateField HeaderText="Register" ItemStyle-CssClass="template-center">
           <ItemTemplate >
               <asp:CheckBox ID="chkRegister" runat="server"/>
           </ItemTemplate>
       </asp:TemplateField>
       <asp:TemplateField HeaderText="Wait List" ItemStyle-CssClass="template-center">
           <ItemTemplate>
               <asp:CheckBox ID="chkWaitList" runat="server" />
           </ItemTemplate>
        </asp:TemplateField>
    </Columns>
    </asp:GridView>
    </div>


代码背后

 protected void registerEvent()
        {
            foreach (GridViewRow row in grdEventDetail.Rows)
            {

                CheckBox chkR = row.FindControl("chkRegister") as CheckBox;
                CheckBox chkW = row.FindControl("chkWaitList") as CheckBox;

                if (chkR != null && chkW != null)// It is a datarow
                {

                    GridViewRow Rowr = ((GridViewRow)chkR.Parent.Parent);
                    GridViewRow Roww = ((GridViewRow)chkW.Parent.Parent);

                    if ((chkR.Checked) || (chkW.Checked))
                    // if ((((CheckBox)row.FindControl("chkRegister")).Checked == true) || (((CheckBox)row.FindControl("chkWaitList")).Checked == true))
                    {
                        Label eventID = row.FindControl("lblEventID") as Label;
***Then i do my database stuff here

最佳答案

我相信grdEventDetail GridView在每一行中都没有CheckBoxes。例如,HeaderRowFooterRow可能没有那些CheckBoxes。

我将重写代码以消除任何错误:

protected void registerEvent()
{
    foreach (GridViewRow row in grdEventDetail.Rows)
    {
        CheckBox chkR = row.FindControl("chkRegister") as CheckBox;
        CheckBox chkW = row.FindControl("chkWaitList") as CheckBox;

        if(chkR != null && chkW != null)// It is a datarow
        {
            GridViewRow Rowr = ((GridViewRow)chkR.Parent.Parent);
            GridViewRow Roww = ((GridViewRow)chkW.Parent.Parent);

            if ((chkR.Checked) || (chkW.Checked))
            {
                //Your code goes here
            }
        }
    }
}

10-08 15:34