我在我的Repeater Control
一个asp.net 页面上有一个,我有一些标签和一个dropdownlist
在转发器控件中。默认内容填充在Item_Bound
事件的标签和下拉列表中。现在我想实现以下目标:
- 当用户从下拉列表中选择另一个项目时,标签应相应更新。
我的问题是,由于我的默认内容来自item_bound
,它总是覆盖下拉列表中的内容,但是如果我将!IsPostBack
条件放在 Item_Bound 事件中,那么在选择下拉列表时不会发生任何事情。
我已经使用了 OnSelectedIndexChange 事件,并且只是在事件中提供了 Response.Write,但是由于 DropDownlist 值会覆盖自身,所以我在响应中没有得到任何东西。
任何人都可以帮助我了解我将如何解决这个问题的逻辑。
更新的问题:
好的,现在我可以从下拉列表中使用 selectedItems 获取转发器标签中的结果,但是现在我的问题是我在转发器中绑定了多个结果,即每行的每个下拉列表,但是当我从另一行中选择项目时,它仍然假设第一行的值。这是我的参考代码:
protected void drpQuantity_SelectedIndexChanged(object sender, EventArgs e) //DropDown inside repeater control.
{
foreach (RepeaterItem item in rptLatestProducts.Items)
{
if (item.ItemType == ListItemType.Item)
{
HiddenField hd = item.FindControl("hdProductId") as HiddenField;
DropDownList drp = item.FindControl("drpQuantity") as DropDownList;
Label mrp = item.FindControl("lblMRP") as Label;
Label ourPrice = item.FindControl("lblOurPrice") as Label;
Label discount = item.FindControl("lblDiscount") as Label;
ScriptManager.RegisterStartupScript(updPriceByUnits, this.GetType(), "alert", "alert('" + hd.Value + "')", true); //Always returns product id of the first row.
objPackage.ProductId = Convert.ToInt32(hd.Value);
objPackage.TownId = objPackage.DefaultTown;
int discountPercent = Convert.ToInt32(objPackage.GetProductPackages().Select("unit=" + drp.SelectedValue + " and productid=" + hd.Value)[0]["Discount"].ToString());
mrp.Text = "<span class='rupee' style='font-size:14px;'>Rs</span>" + objPackage.GetProductPackages().Select("unit=" + drp.SelectedValue + " and productid=" + hd.Value)[0]["MRP"].ToString();
ourPrice.Text = "<span class='rupee' style='font-size:14px;'>Rs</span>" + objPackage.GetProductPackages().Select("unit=" + drp.SelectedValue + " and productid=" + hd.Value)[0]["Price"].ToString();
mrp.Visible = (mrp.Text != ourPrice.Text);
if (discountPercent > 0)
{
discount.Visible = true;
discount.Text = objPackage.GetProductPackages().Select("unit=" + drp.SelectedValue + " and productid=" + hd.Value)[0]["Discount"].ToString() + "% OFF";
}
else
{
discount.Visible = false;
}
}
}
}
谁能帮我解决这个问题