1

我有一个带有文字、下拉列表和按钮的转发器。

  <asp:Repeater ID="Repeater1" runat="server" OnItemDataBound="rep_ItemDataBound" onitemcommand="Repeater1_ItemCommand">
        <ItemTemplate>
          <div class="buypanel">
        <ul>
            <li>Choose finish <asp:DropDownList ID="ddlFinish" runat="server"></asp:DropDownList></li>
            <li>Qty <asp:Literal ID="ltQty" runat="server"></asp:Literal></li>
            <li><asp:Button ID="butBuy" runat="server" Text="Button" /></li>
        </ul>
        </div>
    </ItemTemplate>
    </asp:Repeater>

我正在绑定代码中的所有信息,例如

 protected void rep_ItemDataBound(object sender, RepeaterItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
            {
                Products product = (Products) e.Item.DataItem;


               //Dropdownlist to be bound. 

                //Set Buy Button
                var butBuy = (Button) e.Item.FindControl("butBuy");
                butBuy.CommandName = "Buy";
                butBuy.CommandArgument = product.Id.ToString();

            }
        }

我让我的 itemcommand 拿起按钮点击

  protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
        {
            if(e.CommandName == "Buy")
            {

            }
        }

我不确定如何通过给定的按钮单击从文本框和旁边的下拉列表中获取正确的信息?

4

1 回答 1

1

RepeaterCommandEventArgs 有一个“Item”属性,您可以使用它来引用发生按钮单击的特定项目(启动命令的项目)。然后,您可以使用相同的 FindControl 方法从控件中获取数据。

根据您提供的示例代码,您可以使用 CommandArgument 属性来获取产品 ID。这与从控件收集的数据相结合,将允许您创建订单。

于 2010-05-27T12:13:28.023 回答