0

我无法从列表视图访问标签。我一直在阅读所有帖子,但似乎没有任何效果。这是我的代码。

for (int i = 0; i < ListView1.Items.Count; i++)
                {
                    Label someLabel = (Label) ListView1.Items[i].FindControl("nItemsId");
                    if (someLabel != null)
                        someLabel.Text = "100";
                }


 <asp:ListView runat="server" ID="ListView1" DataKeyNames="ProductId" DataSourceID="GameTable" OnItemCommand="On_Select_Item" >
      <LayoutTemplate>
           <table runat="server" id="gametable" cellspacing="0" cellpadding="1" border="0">
              <tr style="height: 20px; font-size: 20px; color: Red">
             <th>
                <asp:Label runat="server" Text="5" ID="nItemsId" cssClass="cart">        
                 </asp:Label>
              </th>
              </tr>

......................................
------------------------------
</asp.ListView>
4

1 回答 1

1

LayoutTemplate 内的标签控件,因此它不是任何ListView项目的一部分。试试:

ListView.FindControl("nItemsId")

如果标签是其中的一部分,您所拥有的将起作用ItemTemplate

有关此主题的更多信息:访问 ListView 的 LayoutTemplate 内的控件

于 2013-04-04T17:54:19.080 回答