如何在 ContentPlaceholder 和占位符中找到控件?

发布于 2024-09-24 12:51:39 字数 316 浏览 3 评论 0原文

我正在动态地将控件添加到 ContentPlaceHolder 中的 PlaceHolder 中,

var t = (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");
var t1 = (PlaceHolder)mpContentPlaceHolder.FindControl("PlaceHolderName");

var t2 = (DropDownList)t1.FindControl("ControlID");

看起来我丢失了一些东西,因为 t2 始终为 null

I am adding controls dynamically to PlaceHolder which within ContentPlaceHolder

var t = (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");
var t1 = (PlaceHolder)mpContentPlaceHolder.FindControl("PlaceHolderName");

var t2 = (DropDownList)t1.FindControl("ControlID");

It looks like I am missing something because t2 is always null

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

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

发布评论

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

评论(3

不气馁 2024-10-01 12:51:39

如果您想查找母版页的控件,那么您可以找到如下内容:

Label l = Master.FindControl("label1") as Label;

在您从 contentplaceholder 查找控件的情况下,您可以找到如下控件:

  TextBox TB=
  Master.FindControl("ContentPlaceHolder1").FindControl("textbox1") as
  TextBox;

If you want to find controls of master page then you can find like :

Label l = Master.FindControl("label1") as Label;

And in your case for finding control from contentplaceholder you can find control like :

  TextBox TB=
  Master.FindControl("ContentPlaceHolder1").FindControl("textbox1") as
  TextBox;
一曲爱恨情仇 2024-10-01 12:51:39

我用这个方法找到了gridview:

GridView gv =(GridView)Master.FindControl("ContentPlaceHolder1").FindControl("gvRD"); 

I found gridview with this method:

GridView gv =(GridView)Master.FindControl("ContentPlaceHolder1").FindControl("gvRD"); 
八巷 2024-10-01 12:51:39

如果您动态添加控件并且尝试在回发后查找该控件,您将找不到它们。

If you are adding controls dynamically and you are trying to find the control after postback you will not find them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文