循环遍历重复项

本文关键字:遍历 循环 | 更新日期: 2023-09-27 18:14:17

我有一个中继器,它是这样构建的:

 <asp:Repeater runat="server" ID="rptItems" OnItemDataBound="rptItems_ItemDataBound">
            <ItemTemplate>
            <div class="span12 grey-box">
                        <div class="hero-block3">
                            <div class="row show-grid">
                                <div class="span9">
                                    <div class="hero-content-3">
                                        <h2><asp:Literal ID="ltrName" runat="server"></asp:Literal></h2>
                                        <p><asp:Literal ID="ltrDescription" runat="server"></asp:Literal></p>
                                    </div>
                                </div>
                                <div class="span3">
                                <asp:Panel ID="pnlAmount" runat="server">
                                    <div class="tour-btn" id="divAmount" runat="server">
                                        <small>How Many?<br /></small>
                                        <asp:TextBox runat="server" ID="tbox" Width="40"></asp:TextBox>
                                    </div>
                                    </asp:Panel>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="clear-both"></div>
                    <br />
            </ItemTemplate>
        </asp:Repeater>

使用:

  ListProducts = db.GetDataTable("select * from Products where Id in (" + selectedValues + ")");
        rptItems.DataSource = ListProducts;
        rptItems.DataBind();

然后使用:

protected void rptItems_ItemDataBound(object sender,
                                  System.Web.UI.WebControls.RepeaterItemEventArgs e)
    {
        DataRowView nRow = null;
        switch (e.Item.ItemType)
        {
            case ListItemType.Item:
            case ListItemType.AlternatingItem:
                nRow = (DataRowView)e.Item.DataItem;
                ((Literal)e.Item.FindControl("ltrDescription")).Text = "" + nRow["Description"];
                ((Literal)e.Item.FindControl("ltrName")).Text = "" + nRow["Name"];
                if ("" + nRow["HasAmount"] == "False")
                {
                    ((Panel)e.Item.FindControl("pnlAmount")).Visible = false;
                }
                break;
        }
    }

然而,现在在页面的onclick事件上,我试图保存存储的信息-这就是我到目前为止所做的,但它总是似乎都是空的,我不能在(TextBox)item.FindControl("tbSelected");

的末尾添加。text等。

这是我的循环,我正在尝试点击:

protected void doStageThree(object sender, EventArgs e)
        {
            foreach (RepeaterItem item in rptItems.Items)
            {
                if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
                {
                    var tbSelected = (TextBox)item.FindControl("tbSelected");
                    var lblDescription = (Literal)item.FindControl("ltrDescription");
                    var lblName = (Literal)item.FindControl("ltrName");
                }
            }
        }

循环遍历重复项

始终为空,因为没有id为tbSelectedTextBox

<asp:TextBox runat="server" ID="tbox" Width="40"></asp:TextBox>

改为:

var tbSelected = (TextBox)item.FindControl("tbox");

使用关键字as:

保护你的代码不为空
var tbSelected = item.FindControl("tbox") as TextBox;
if (tbSelected != null)
{
   //textbox with id tbox exists
   tbSelected.Text = "your text";
}

尝试替换

    foreach (RepeaterItem item in rptItems.Items)

    foreach (Control c in rptItems.Items)
    {
        if(c.FindControl("tbSelected") != null)
        {
           var selectedText = ((TextBox)c.FindControl("tbSelected")).Text;
        }
    }