如何使用DropDownList限制数据库INSERT中的用户选择?

时间:2012-11-17 01:41:49

标签: c# asp.net .net

我试图使用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不允许我在Insert中使用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的新手,刚开始在我的网站开发课程中学习它,所以如果你能回答的话请ELI5。提前感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分: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”,否则会引发错误。

谢谢,