如何使用asp.net实体数据模型将选定的下拉列表值插入数据库

本文关键字:下拉列表 数据库 插入 asp 何使用 net 实体 数据模型 | 更新日期: 2023-09-27 18:11:19

我使用下面的代码首先从category entity检索category Id,并将其绑定到dropdownlist,即DropDownlistCategory。现在我想将category ID从下拉列表插入到包含数据库中四列的产品实体,如

ProductName,CategoryID,QuantityPerUnit and UnitPrice.

但是当插入下拉列表值时,它总是选择下拉列表中的第一个值。

使用这个:

prod.CategoryID = Convert.ToInt32(DropDownListCategory.SelectedValue);

正确吗?

NewProduct。aspx代码:

 <asp:DropDownList ID="DropDownListCategory" runat="server"CssClass="form-    control" Width="100px"   OnSelectedIndexChanged="DropDownListCategory_SelectedIndexChanged" >
    </asp:DropDownList>

NewProduct.cs代码:

    LaunderDBEntities context = new LaunderDBEntities(); 
    protected void Page_Load(object sender, EventArgs e)
    {
        var categoryId = from cat in context.Categories
                       select new
                       {
                           categoryID = cat.CategoryID,
                       };

        DropDownListCategory.DataSource = categoryId.ToList();
        DropDownListCategory.DataValueField = "categoryID";
        DropDownListCategory.DataTextField = "categoryID";
        DropDownListCategory.DataBind();
    }
    protected void btnAddProduct_Click(object sender, EventArgs e)
    {
        SaveProductInfo();
    }

    private void SaveProductInfo()
    {
        Product prod = new Product();
        prod.ProductName = txtProductName.Text;
        prod.CategoryID =   Convert.ToInt32(DropDownListCategory.SelectedValue);
        prod.QuantityPerUnit = Convert.ToInt32(txtQuantity.Text);
        prod.UnitPrice =Convert.ToInt32(txtUnitPrice.Text);

        ProductDA prdDa = new ProductDA();
        prdDa.InertProductDetails(prod);
        Label5.Text = "<p style='color:Green;'>Information Successfully saved!</p>";
        Response.Redirect("ProductInfo.aspx");
    }

如何使用asp.net实体数据模型将选定的下拉列表值插入数据库

在页面加载中使用IsPostBack只在第一次加载页面时绑定下拉列表。

 protected void Page_Load(object sender, EventArgs e)
 {
        if(!IsPostBack)
        { 
             //.... code to bind the dropdownlist
        }
}