我有一个可以正常工作的gridview,但是给了我错误“单击编辑时对象未设置为对象的实例。
我相信是因为我的 gridview 中的标签在编辑模式下为空,这就是导致问题的原因,但我不知道如何解决这个问题。
<asp:BoundField DataField="Received" HeaderText="Received" SortExpression="Received"
ReadOnly="true">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:TemplateField HeaderText="Complete" SortExpression="Complete">
<ItemTemplate>
<asp:Label ID="lblComplete" runat="server" Text='<%# Bind("Complete") %>'></asp:Label>
</ItemTemplate>
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
<asp:BoundField DataField="TransTime" HeaderText="Trans. Time" SortExpression="TransTime"
ReadOnly="true">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>
<asp:TemplateField ShowHeader="False">
<ItemTemplate>
<asp:LinkButton ID="lbClose" runat="server" CausesValidation="False" CommandName="CloseClicked" Text ="Close"
OnClick="CloseClick_Click">Close</asp:LinkButton>
<asp:LinkButton ID="lbEdit" runat="server" CausesValidation="False" CommandName="EditRow" Text =""
OnClick="Edit_Click" CommandArgument='<%# Eval("TicketId")%>'>Edit</asp:LinkButton>
<asp:LinkButton ID="lbDelete" runat="server" CausesValidation="False" CommandName="DeleteRow" Text =""
OnClick="Delete_Click">Delete </asp:LinkButton>
</ItemTemplate>
<EditItemTemplate>
<asp:LinkButton ID="lbUpdate" runat="server" CausesValidation="True" CommandName="UpdateRow"
ForeColor="White" Text="Update" CommandArgument='<%# Eval("TicketId")%>'></asp:LinkButton>
<asp:LinkButton ID="lbCancel" runat="server" CausesValidation="False" CommandName="CancelUpdate"
ForeColor="White" CommandArgument='<%# Eval("TicketId")%>' Text="Cancel"></asp:LinkButton>
</EditItemTemplate>
<FooterStyle HorizontalAlign="Center" />
<ItemStyle HorizontalAlign="Center" />
</asp:TemplateField>
</Columns>
<EditRowStyle BackColor="#999999" />
/>
</asp:GridView>
行命令
protected void gvData_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "EditRow")
{
//This enables the EditTemplate
int rowindex = ((GridViewRow) ((LinkButton)e.CommandSource).NamingContainer).RowIndex;
gvData.EditIndex = rowindex; //Enables the edit row in gridview
}
}
我在 lbClose.Enabled 中得到错误
protected void gvData_RowDataBound(object sender, GridViewRowEventArgs e)
{
e.Row.Cells[0].Visible = false;
if (e.Row.RowType == DataControlRowType.DataRow)
{
LinkButton lbClose = (LinkButton)e.Row.Cells[5].FindControl("lbClose");
LinkButton lbEdit = (LinkButton)e.Row.Cells[5].FindControl("lbEdit");
LinkButton lbDelete = (LinkButton)e.Row.Cells[5].FindControl("lbDelete");
var lblTrans = (Label)e.Row.FindControl("lblTrans");
var lblComplete = (Label)e.Row.FindControl("lblComplete");
if (e.Row.Cells[3].Text == "")
{
lbClose.Enabled = true; //Error Here
lbEdit.Enabled = true;
lbDelete.Enabled = true;
}
else
{
lbClose.Enabled = false;
}
}
}