1

我正在尝试使用存储过程来使用 detailsview 和 sqldatasource 插入记录。我收到以下错误:

过程或函数“CustRec_iu”需要未提供的参数“@firstname”。

我的 detailsview 定义如下:

<asp:DetailsView ID="dvCustDetails1" runat="server" AutoGenerateRows="False" 
    DataSourceID="SqlDataSource1" Height="149px" Width="469px">
            <Fields>
                <asp:BoundField DataField="FirstName" HeaderText="First Name" 
                    SortExpression="FirstName" />
                <asp:BoundField DataField="LastName" HeaderText="Last Name" 
                    SortExpression="LastName" />
                <asp:CommandField ButtonType="Button" ShowInsertButton="True" />
            </Fields>
</asp:DetailsView>

在后面的代码中,PageLoad 如下所示:

    SqlDataSource1.ConnectionString = Connection.ConnectionStr;

    //SqlDataSource1.InsertCommand = "INSERT INTO [customer] (firstname,lastname,active) values(@firstname,@lastname,@active)";
    SqlDataSource1.SelectCommand = "select firstname,lastname from customer";

    //SqlDataSource1.SelectCommand = "CustRec";
    SqlDataSource1.InsertCommand = "CustRec_iu";

    SqlDataSource1.InsertParameters.Clear();

    SqlDataSource1.InsertParameters.Add(new Parameter("firstname", DbType.String));
    SqlDataSource1.InsertParameters.Add(new Parameter("LastName", DbType.String));
    SqlDataSource1.InsertParameters.Add(new Parameter("Active",DbType.Int16,"1"));

请注意,如果我使用注释掉的内联语句,则插入有效。

我的存储过程如下所示:

ALTER PROCEDURE dbo.CustRec_iu
    (
    @custid int = null,
    @firstname varchar(100),
    @lastname varchar(100),
    @Active bit = 1 
    )

AS
    if (isnull(@custid,0) = 0)
    begin
        insert into customer
            (firstname,lastname,Active) 
        values
            (@firstname,@lastname,@Active)
    end
    else
    begin
        update customer 
        set 
            firstname=@firstname, 
            lastname= @lastname, 
            active = @Active
        where 
            custid = @custid
    end
    /* SET NOCOUNT ON */
    RETURN

我不明白输入参数如何在 sqldatasource、detailsview 等之间进行交互。它如何与 insline 语句一起使用而不与存储过程一起使用?sql datasource 和 detailsview 在事件方面是如何工作的?谷歌搜索和打印书籍 Professional asp.net 3.5 in c# and VB 帮助不大。

提前感谢您阅读我的问题。

4

3 回答 3

2

我想你可能会失踪SqlDataSource1.InsertCommandType = CommandType.StoredProcedure

于 2009-02-26T15:41:52.600 回答
0

快速查看后,似乎没有为插入参数分配默认值。尝试参数类构造函数...

New Parameter(name, dbType, defaultValue)

此外,您可能不需要在后面的代码中执行 sqldatasource。您可以尝试以下方法。

<asp:DetailsView DataSourceID="SqlDataSource1" Height="149px" Width="469px">
   <Fields>
      <asp:BoundField DataField="FirstName" HeaderText="First Name" SortExpression="FirstName" />
      <asp:BoundField DataField="LastName" HeaderText="Last Name" SortExpression="LastName" />
      <asp:CommandField ButtonType="Button" ShowInsertButton="True" />
   </Fields>
</asp:DetailsView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:YourConnectionString %>"
   InsertCommand="CustRec_iu"
   InsertCommandType="StoredProcedure" 
   SelectCommand="select firstname,lastname from customer" 
   SelectCommandType="Text">
        <InsertParameters>
            <asp:Parameter Name="firstname" Type="String" />
            <asp:Parameter Name="LastName" Type="String" />
            <asp:Parameter Name="Active" Type="String" DefaultValue="1" />
        </InsertParameters>
</asp:SqlDataSource>
于 2009-02-26T15:34:47.390 回答
0

内联语句的工作方式与 sproc 类似,不同之处在于您使用嵌入在字符串中的 @param 语句来创建字符串。

你应该只需要在你的存储过程中拉入你的更新和插入语句。然后,您必须创建参数链接。

如果您想进行这种拖放操作,请将更新语句插入到向导中。最坏的情况是添加参数映射。因此,拖放在这里并没有真正提供太多。

于 2009-02-26T18:33:03.187 回答