0

我正在尝试使用 DropDownList 限制 INSERT 的选择,我的 TextBox 都可以正常工作,但我似乎无法弄清楚如何以类似的方式使用 DropDownList。

这是我当前的代码隐藏:

private void _subInsert(RepeaterCommandEventArgs e)
{
    TextBox txtPostTitle = (TextBox)e.Item.FindControl("txt_post_titleI"); // Find the control with the information you wish to store
    TextBox txtPostBody = (TextBox)e.Item.FindControl("txt_post_bodyI");
    TextBox txtPostAuthor = (TextBox)e.Item.FindControl("txt_post_authorI");
    DropDownList ddlPostType = (DropDownList)e.Item.FindControl("ddl_post_typeI");

    sds_main.InsertParameters["post_title"].DefaultValue = txtPostTitle.Text; // Insert information into this location in the DB
    sds_main.InsertParameters["post_body"].DefaultValue = txtPostBody.Text;
    sds_main.InsertParameters["post_author"].DefaultValue = txtPostAuthor.Text;
    sds_main.InsertParameters["post_type"].DefaultValue = ddlPostType.SelectedValue.ToString();

    sds_main.Insert(); // Perform Insert
}

TextBoxes 都正确插入,但 DropDownList 不允许我在插入中使用 SelectedValue。我收到“对象引用未设置为对象的实例”。错误。

这是演示页面上我的 SQLDataSource 控件的代码:

    <asp:SqlDataSource
    id="sds_main"
    runat="server" 
        ConnectionString="<%$ ConnectionStrings:fntn0070DBConnectionString %>" 
        SelectCommand="SELECT * FROM [blogTest]" 
        DeleteCommand="DELETE FROM [blogTest] WHERE [id] = @id" 
        InsertCommand="INSERT INTO [blogTest] ([post_title], [post_body], [post_author], [post_type]) VALUES (@post_title, @post_body, @post_author, @post_type)" 

        UpdateCommand="UPDATE [blogTest] SET [post_title] = @post_title, [post_body] = @post_body, [post_author] = @post_author, [post_type] = @post_type WHERE [id] = @id" >
    <DeleteParameters>
        <asp:Parameter Name="id" Type="Int32" />
    </DeleteParameters>
    <InsertParameters>
        <asp:Parameter Name="post_title" Type="String" />
        <asp:Parameter Name="post_body" Type="String" />
        <asp:Parameter Name="post_date" Type="String" />
        <asp:Parameter Name="post_author" Type="String" />
        <asp:Parameter Name="post_type" Type="String" />
    </InsertParameters>
    <UpdateParameters>
        <asp:Parameter Name="post_title" Type="String" />
        <asp:Parameter Name="post_body" Type="String" />
        <asp:Parameter Name="post_author" Type="String" />
        <asp:Parameter Name="post_type" Type="String" />
        <asp:Parameter Name="id" Type="Int32" />
    </UpdateParameters>
    </asp:SqlDataSource>

这是我在演示页面上的 DDL:

<asp:DropDownList ID="ddl_postTypeI" runat="server">
    <asp:ListItem>Web Development</asp:ListItem>
    <asp:ListItem>Photography</asp:ListItem>
    <asp:ListItem>Other</asp:ListItem>
</asp:DropDownList>

我已尽力在 Google 和 StackOverflow 上搜索此问题,但只能找到有关如何将数据绑定到 DDL 的信息。

我对 ASP.NET 4 很陌生,刚开始在我的 Web 开发课程中学习它,所以如果你能回答,请 ELI5。提前感谢您提供的任何帮助。

4

1 回答 1

0

如果不给出下拉列表的值,则不能直接使用它。

尝试这个

    <asp:DropDownList ID="ddl_postTypeI" runat="server">
    <asp:ListItem Value="Web Development">Web Development</asp:ListItem>
    <asp:ListItem Value="Photography">Photography</asp:ListItem>
    <asp:ListItem Value="Other">Other</asp:ListItem>
</asp:DropDownList>

然后尝试插入数据,如果您传递整数值,则使用 value="1" 否则会引发错误。

谢谢,

于 2012-11-17T04:03:37.417 回答