在使用母版页控件的页面中获取母版页控件时遇到问题

发布于 2024-10-21 08:51:16 字数 256 浏览 2 评论 0原文

我的母版页面中有一个 Label ,我想在使用相同母版页面的页面中访问它。 我尝试过..

string text = ((Label)Master.FindControl("myLabel")).Text; //始终返回空字符串

PS我已包含<%@ MasterType virtualpath="~/Masters/Master1.master" %> 仍然无法正常工作

I have a Label in my mater page which i want to access in a page which uses the same mater page.
I tried..

string text = ((Label)Master.FindControl("myLabel")).Text; //Always returns empty string

P.S i have included <%@ MasterType virtualpath="~/Masters/Master1.master" %>
still not working

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

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

发布评论

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

评论(2

王权女流氓 2024-10-28 08:51:16

正如 Waqas Raja 在评论中提到的,问题出在事件顺序上:master 的 Load 事件在页面的 Load 事件之后发生。因此,您可以使用 Page。页面中的 LoadComplete 事件:

protected void Page_LoadComplete(object sender, EventArgs e)
{
    string text = ((Label)Master.FindControl("myLabel")).Text;
}

它应该为您提供文本框所需的值。

As Waqas Raja mentioned in comments, the problem is in event sequence: master's Load event occurs after page's Load event. So you could just use Page.LoadComplete event in your page:

protected void Page_LoadComplete(object sender, EventArgs e)
{
    string text = ((Label)Master.FindControl("myLabel")).Text;
}

and it should give you desired value of the textbox.

雪花飘飘的天空 2024-10-28 08:51:16

我在母版页中标记的东西位于内容占位符中。所以

 ContentPlaceHolder mpContentPlaceHolder = 
      (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");
  string  TextBoxvalue = 
            ((TextBox) mpContentPlaceHolder.FindControl("TextBox1")).Text;

i thing you label in master page reside in content place holder. so

 ContentPlaceHolder mpContentPlaceHolder = 
      (ContentPlaceHolder)Master.FindControl("ContentPlaceHolder1");
  string  TextBoxvalue = 
            ((TextBox) mpContentPlaceHolder.FindControl("TextBox1")).Text;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文