在列表视图项模板中查找控件

发布于 2025-01-03 19:19:52 字数 695 浏览 0 评论 0原文

我在 itemtemplate 中有下一个代码:

 <asp:ListView ID="ListView1" runat="server">
            <ItemTemplate>

  <asp:HiddenField Value='<%# checkCatName(Eval("CatName")) %>' runat="server" />
           ........
   <asp:Label runat="server" id="lblBla" Visible="false"> ... </asp:Label>

      </ItemTemplate>
</asp:ListView>

代码隐藏(C#):

public void checkCatName(object CatName)
{
    Label bla = (Label)ListView1.FindControl("lblBla");


    if (CatName.ToString() == "test1")
        bla.Visible = true;


    return CatName.ToString();

}

我得到 null - 就像页面找不到“bla”标签一样。

我哪里错了?

I have the next code in itemtemplate:

 <asp:ListView ID="ListView1" runat="server">
            <ItemTemplate>

  <asp:HiddenField Value='<%# checkCatName(Eval("CatName")) %>' runat="server" />
           ........
   <asp:Label runat="server" id="lblBla" Visible="false"> ... </asp:Label>

      </ItemTemplate>
</asp:ListView>

Code Behind (C#):

public void checkCatName(object CatName)
{
    Label bla = (Label)ListView1.FindControl("lblBla");


    if (CatName.ToString() == "test1")
        bla.Visible = true;


    return CatName.ToString();

}

I get null - like the page dont find the "bla" label.

Where i'm wrong ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

永不分离 2025-01-10 19:19:52

要获取列表视图或转发器中的项目,您需要浏览此视图中的项目,然后找到控件(隐藏字段)。

页面将无法直接找到该控件。

希望有帮助。

to get item which is in the listview or a repeater, you will need to go through items in this view and then find control (hidden field).

Page will not be able to find that control directly.

Hope that helps.

小草泠泠 2025-01-10 19:19:52

如果列表视图有 itemdatabound 事件,您可以使用它来查找控件并使用它执行您需要的操作。以下代码假设您的列表视图项模板中有一个隐藏字段,其 id="myhiddenfield"

//this goes inside your listview's itemdatabound event
HiddenField myhiddenfield = new HiddenField();
myhiddenfield = (HiddenField)e.Item.FindControl("myhiddenfield");

//get or set hidden field value here.
int myID = Convert.ToInt32(myhiddenfield.Value);

If the listview has an itemdatabound event you can use it to find the control and do what ever you need with it. The following code is assuming you have a hidden field in your listview item template with the id="myhiddenfield"

//this goes inside your listview's itemdatabound event
HiddenField myhiddenfield = new HiddenField();
myhiddenfield = (HiddenField)e.Item.FindControl("myhiddenfield");

//get or set hidden field value here.
int myID = Convert.ToInt32(myhiddenfield.Value);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文