我的GridView存在一些奇怪的问题。基本上,我试图在表上运行删除命令。 gridview有3个绑定到它的字段,ItemId,ItemSummary和ItemDate。
现在我记得,在模式更改期间(例如,在“选择”和“编辑”之间),这些字段将使用@ + FieldName语法自动传递(即,ItemId作为@ItemId传递)。
所以记住这一点我尝试了删除语句,但是它给出了一个错误,说参数没有通过。所以我尝试了另一种方法,以编程方式提取ItemId并在运行时将其作为参数插入。
我尝试从绑定到控件的DataItem读取,但它一直返回null。
经过一些调试后,我发现当数据最初绑定到控件时,它正确创建了一个DataItem,但是一旦模式被更改,DataItem现在就为null。
我一直试图解决这个问题多年,它只是不会工作。这是我的代码:
<asp:DetailsView FieldHeaderStyle-CssClass="bold" CssClass="marginLeftRightBottom10px center"
AutoGenerateDeleteButton="true" AutoGenerateEditButton="true" GridLines="Both"
ID="dvIndividualUpdate" AutoGenerateInsertButton="true" runat="server" AutoGenerateRows="False"
DataSourceID="sqldsSingleUpdate" OnDataBound="dvIndividualUpdate_DataBound">
<Fields>
<asp:TemplateField>
<HeaderTemplate>
Update Id:
</HeaderTemplate>
<ItemTemplate>
<asp:Label Text='<%# Eval("updateId") %>' ID="lblUpdateId" runat="server"></asp:Label>
</ItemTemplate>
<InsertItemTemplate>
<asp:Label Text='Auto Generated' ID="lblUpdateIdInsert" runat="server"></asp:Label>
</InsertItemTemplate>
<EditItemTemplate>
<asp:Label Text='Auto Generated' ID="lblUpdateIdEdit" runat="server"></asp:Label>
</EditItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<HeaderTemplate>
Update Summary:
</HeaderTemplate>
<ItemTemplate>
<asp:Label Text='<%# Eval("updateSummary") %>' ID="lblUpdateSummary" runat="server"></asp:Label>
</ItemTemplate>
<InsertItemTemplate>
<asp:TextBox CssClass="tbUpdateSummaryInsert" TextMode="MultiLine" Text='<%# Bind("updateSummary") %>'
ID="tbUpdateSummary" runat="server"></asp:TextBox>
</InsertItemTemplate>
<EditItemTemplate>
<asp:TextBox CssClass="tbUpdateSummaryEdit" TextMode="MultiLine" Text='<%# Bind("updateSummary") %>'
ID="tbUpdateSummary" runat="server"></asp:TextBox>
</EditItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<HeaderTemplate>
Update Date:
</HeaderTemplate>
<ItemTemplate>
<asp:Label Text='<%# Eval("dateOfUpdate") %>' ID="lblDateOfUpdateInsert" runat="server"></asp:Label>
</ItemTemplate>
<InsertItemTemplate>
<asp:Label Text='' ID="lblEditDateOfUpdate" runat="server"></asp:Label>
</InsertItemTemplate>
<EditItemTemplate>
<asp:Label Text='<%# Eval("dateOfUpdate") %>' ID="lblDateOfUpdateEdit" runat="server"></asp:Label>
</EditItemTemplate>
</asp:TemplateField>
</Fields>
</asp:DetailsView>
<asp:Label ID="lblUpdateErrors" runat="server" Text="" CssClass="block colorRed marginBottom10px center"></asp:Label>
<asp:SqlDataSource DataSourceMode="DataSet" ID="sqldsSingleUpdate" runat="server"
ConnectionString="<%$ ConnectionStrings:myDbConnection%>" SelectCommandType="StoredProcedure"
SelectCommand="dbo.getUpdate" InsertCommand="dbo.createUpdate" InsertCommandType="StoredProcedure"
OnInserted="sqldsSingleUpdate_Inserted" DeleteCommand="dbo.deleteUpdate" DeleteCommandType="StoredProcedure"
OnDeleted="sqldsSingleUpdate_Deleted" OnDeleting="sqldsSingleUpdate_Deleting">
<DeleteParameters>
<asp:Parameter Name="updateID" />
</DeleteParameters>
<SelectParameters>
<asp:ControlParameter Name="updateId" ControlID="gvUpdates" PropertyName="SelectedDataKey.Value" />
</SelectParameters>
<InsertParameters>
<asp:ControlParameter DbType="Date" ControlID="dvIndividualUpdate$lblEditDateOfUpdate"
Name="dateOfUpdate" PropertyName="Text" />
</InsertParameters>
</asp:SqlDataSource>
我的相关代码隐藏:
protected void dvIndividualUpdate_DataBound(object sender, EventArgs e)
{
if (dvIndividualUpdate.CurrentMode == DetailsViewMode.Insert)
{
Label lbl = dvIndividualUpdate.FindControl("lblEditDateOfUpdate") as Label;
lbl.Text = DateTime.Today.ToString("dd-MM-yyyy");
}
}
protected void sqldsSingleUpdate_Inserted(object sender, SqlDataSourceStatusEventArgs e)
{
if (e.Exception != null)
{
Exception ex = e.Exception;
lblUpdateErrors.Text = "There was a problem creating the update.";
ErrorSignal.FromCurrentContext().Raise(ex);
e.ExceptionHandled = true;
return;
}
else
{
lblUpdateErrors.Text = "Update created successfully.";
gvUpdates.DataBind();
}
}
protected void sqldsSingleUpdate_Deleted(object sender, SqlDataSourceStatusEventArgs e)
{
if (e.Exception != null)
{
Exception ex = e.Exception;
lblUpdateErrors.Text = "There was a problem deleting the update.";
ErrorSignal.FromCurrentContext().Raise(ex);
e.ExceptionHandled = true;
return;
}
else
{
lblUpdateErrors.Text = "Update deleted successfully.";
gvUpdates.DataBind();
}
}
非常感谢
答案 0 :(得分:0)
如果将ItemID作为数据键添加到GridView,数据源控件应自动获取它以进行更新和删除。从数据源中删除更新和删除参数,将ItemID指定为数据键,并给出一个镜头。