asp.net repeater数据绑定:当下拉框的值改变的时候就将这条数据放入购物车中去怎么实现?
3个回答
展开全部
还是和没加repeater控件一样的写法
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
---------------------
后台
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (this.DropDownList1.SelectedValue != "0")
{
//获取该行的数据放入购物车中
}
else
{
//查询购物车中是否存在数据。正常的话当不等于0存放购物车,等于0要把购物车的数据删除
}
}
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True"
onselectedindexchanged="DropDownList1_SelectedIndexChanged">
</asp:DropDownList>
---------------------
后台
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
if (this.DropDownList1.SelectedValue != "0")
{
//获取该行的数据放入购物车中
}
else
{
//查询购物车中是否存在数据。正常的话当不等于0存放购物车,等于0要把购物车的数据删除
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询