嘿所有 - 我试图从位于Repeater中的DropDown列表中访问SelectedItem值,但是我收到了抛出的Null异常。这个中继器将迭代超过10"产品"。以下是我的Web表单中的代码:
<asp:repeater ID="rptProducts" runat="server" OnItemDataBound="rptProducts_ItemDataBound" OnItemCommand="rptProducts_ItemCommand">
<ItemTemplate>
<div class="col-md-8 col-md-offset-2 product">
<img src="<%# Eval("ImageFile") %>" class="col-xs-12" alt="<%# Eval("Name") %> Product Image"/>
<h3><%# Eval("Name") %></h3>
<p><%# Eval("ShortDescription") %></p>
<asp:DropDownList ID="DropDownList1" runat="server"></asp:DropDownList>
<asp:Button ID="Button1" runat="server" Text="Add to Cart" CommandName="click" CommandArgument='<%# Eval("Name") %>' UseSubmitBehavior="false" />
</div>
</ItemTemplate>
</asp:repeater>
来自.cs文件的代码,我试图访问DropDownList1的SelectedItem值。
protected void rptProducts_ItemCommand(object sender, CommandEventArgs e)
{
Repeater rpt = (Repeater)sender;
DropDownList productDDL = (DropDownList)rpt.Items[0].FindControl("DropDownList1");
int Qty = Convert.ToInt32(productDDL.SelectedItem.Text);
Debug.WriteLine(rpt.ID);
if (e.CommandName == "click")
{
Debug.WriteLine("Clicked " + e.CommandArgument.ToString() + "; Quantity: " + Qty);
}
}
此行正在抛出异常:
int Qty = Convert.ToInt32(productDDL.SelectedItem.Text);
我试图准备将数据推送到会话状态,因此我正在测试以确保它是可访问的。是否有我遗漏的东西,或者是更好的方式来获取该特定值?
答案 0 :(得分:1)
在rptProducts_ItemCommand
事件中,您使用的是固定项目索引0
,您需要选择触发项目命令的项目
下面的代码行将选择当前触发的项目。
DropDownList productDDL = (DropDownList)((RepeaterCommandEventArgs)e).Item.FindControl("DropDownList1");