DropDownList不存储值

时间:2013-07-11 13:17:28

标签: c# asp.net

我正在开发一个电子商务应用,问题在于显示购买的商品数量。 DropDownList显示更改数量的选项,它位于gridview中,并且具有selectedindexchanged事件。事件代码工作正常,但是当有两个(或更多)产品并且我们更改一行的数量然后更改其他行的数量时,前一行数量将设置回默认值“1”,而总价格列显示我们设置为DropDownList的价格和数量的乘法。

我的DropDownList代码:

<asp:TemplateField HeaderText="Qty">
                    <EditItemTemplate>
                        <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
                    </EditItemTemplate>
                    <ItemTemplate>
                        <asp:DropDownList ID="ddlQty" runat="server" AutoPostBack="True" 
                            onselectedindexchanged="ddlQty_SelectedIndexChanged">
                            <asp:ListItem>1</asp:ListItem>
                            <asp:ListItem>2</asp:ListItem>
                            <asp:ListItem>3</asp:ListItem>
                            <asp:ListItem>4</asp:ListItem>
                            <asp:ListItem>5</asp:ListItem>
                        </asp:DropDownList>
                    </ItemTemplate>
                </asp:TemplateField>

SelectedIndexChanged和GridView RowDataBoundevent的C#代码:

protected void ddlQty_SelectedIndexChanged(object sender, EventArgs e)
    {
        DropDownList ddlQty =(DropDownList)sender;
        int rowindex = int.Parse(ddlQty.Attributes["rowindex"].ToString());
        ViewState["index"] = rowindex;
        ViewState["I"] = ddlQty.SelectedValue;

        decimal price = Convert.ToDecimal(ds.Tables[0].Rows[rowindex]["Price"].ToString());
        decimal totalprice = price * Convert.ToInt32(ddlQty.SelectedValue);
        ds.Tables[0].Rows[rowindex]["TotalPrice"] = totalprice;
        GridView1.DataSource = ds;
        GridView1.DataBind();
        ds.Tables[1].Rows[0]["TotalPrice"] = decimal.Parse(ds.Tables[1].Rows[0]["TotalPrice"].ToString()) + totalprice - Convert.ToDecimal(ds.Tables[0].Rows[rowindex]["Price"].ToString());
        GridView1.FooterRow.Cells[2].Text = "Total Amount =";
        GridView1.FooterRow.Cells[3].Text = ds.Tables[1].Rows[0]["TotalPrice"].ToString();
    }
    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            DropDownList ddl = (DropDownList)e.Row.FindControl("ddlQty");
            ddl.Attributes.Add("rowindex", e.Row.RowIndex.ToString());
            if (ViewState["index"] != null)
            {
                if (e.Row.RowIndex.ToString() == ViewState["index"].ToString())
                {
                    ddl.SelectedValue = ViewState["I"].ToString();
                }
            }

        }
    }

我附上图片也是为了让它更清晰。

enter image description here

1 个答案:

答案 0 :(得分:0)

我认为你的网格对下拉列表中的每个回发都是绑定的,因此更改一个值将覆盖VS中以前存储的值。您应该尝试将这些值存储为列表,对其进行更改而不是每次都替换它。

恕我直言,无论如何,我会将AutoPostBack属性设置为false,并更新客户端的行计算,然后在提交时在服务器端验证。