我使用gridview来选择,删除和更新数据库中的数据。我已经编写了一个SP来执行所有这些操作。基于参数SP决定要执行的操作。
这是我的gridview的图像 image of my grid http://www.freeimagehosting.net/uploads/0a5de50661.jpg
<asp:GridView ID="GridView1" runat="server" DataSourceID="dsDomain"
AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False"
DataKeyNames="DomainId" >
<Columns>
<asp:CommandField ShowDeleteButton="True" ShowEditButton="True" />
<asp:BoundField DataField="DomainId" HeaderText="DomainId"
InsertVisible="False" ReadOnly="True" SortExpression="DomainId">
</asp:BoundField>
<asp:BoundField DataField="Domain" HeaderText="Domain"
SortExpression="Domain">
</asp:BoundField>
<asp:BoundField DataField="Description" HeaderText="Description"
SortExpression="Description" >
</asp:BoundField>
<asp:BoundField DataField="InsertionDate" HeaderText="InsertionDate"
SortExpression="InsertionDate">
</asp:BoundField>
</asp:GridView>
我正在使用的数据源是
<asp:SqlDataSource ID="dsDomain" runat="server"
ConnectionString="<%$ ConnectionStrings:conLogin %>"
SelectCommand="Tags.spOnlineTest_Domain"
SelectCommandType="StoredProcedure" CancelSelectOnNullParameter="False"
DeleteCommand="Tags.spOnlineTest_Domain" DeleteCommandType="StoredProcedure" OnDeleting="DomainDeleting">
<SelectParameters>
<asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="" Name="DomainId" Type="String" />
<asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="" Name="Domain" Type="String" />
<asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="" Name="Description" Type="String" />
<asp:Parameter DefaultValue="1" Name="OperationType" Type="Byte" />
</SelectParameters>
<DeleteParameters>
<asp:ControlParameter ControlID="GridView1" Name="DomainId"
PropertyName="SelectedValue" Size="4" Type="Int32" />
<asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="" Name="Domain" Type="String" /> <asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="" Name="Description" Type="String" /> <asp:Parameter ConvertEmptyStringToNull="true" DefaultValue="4" Name="OperationType" Type="Byte" /> </DeleteParameters> </asp:SqlDataSource>
选择操作正常。 但是当我试图删除时,它说
过程或函数'spOnlineTest_Domain'需要参数'@Domain',未提供
但我提供此参数,如
我的存储过程调用就像这样
EXEC Tags.spOnlineTest_Domain NULL,NULL,NULL,1 // For Select last参数将为1 EXEC Tags.spOnlineTest_Domain“SelectedRow的DomainId”,NULL,NULL,4 //对于删除最后一个参数将为4
我的程序有4个参数,其中最后一个参数将由程序员设置,它将告诉程序要执行的操作类型。 对于仅选择,最后一个参数必须为非空。 对于Delete,first和last参数不能为NULL。
我的第一个Delete参数是表的主键。当用户选择一行并点击删除时,我传递此值。我不确定使用PropertyName =“SelectedValue”,我会得到正确的ID值。
http://www.freeimagehosting.net/uploads/0a5de50661.jpg /&gt;
答案 0 :(得分:2)
如果您尚未实现ObjectDataSource的OnDeleting事件,请尝试以下
<asp:ObjectDataSource .... OnDeleting="YourDeletingEvent" ...
</asp:ObjectDataSource>
在你的代码背后:
private void YourDeletingEvent(object source, ObjectDataSourceMethodEventArgs e)
{
IDictionary paramsFromPage = e.InputParameters;
//In this case I assume your stored procedure is taking a DomainId as a parameter
paramsFromPage.Remove("Domain");
paramsFromPage.Add("Domain", (int)paramsFromPage["DomainId"]);
paramsFromPage.Remove("DomainId");
}
请查看here了解详情。
答案 1 :(得分:1)
</ItemTemplate>
</asp:TemplateField>
之后你可以实现“GridView1_RowDeleting”方法,就像那样: protected void GridView1_RowDeleting(object sender,GridViewDeleteEventArgs e) {
//makeDelete("YourStoredProcedure");
//mydataBindGV();
}