在项目母版页中没有代码隐藏文件;在内容页面中,我需要阅读母版页内的用户控件属性。你能建议如何做到这一点。
问问题
2302 次
4 回答
1
在您的内容页面上试试这个
YourControl YourControlObj = this.Master.FindControl("YourControl") as YourControl;
于 2012-10-12T06:45:00.280 回答
0
在母版页中 -
<asp:TextBox Id="txt" />
在内容页面 -
TextBox t = this.Master.FindControl("txt") as TextBox;
t.Text = "Some Value";
于 2012-10-12T06:45:07.280 回答
0
看看这是否有帮助
Literal mpLiteral = (Literal) Master.FindControl("masterPageLiteralControlID");
于 2012-10-12T06:50:58.810 回答
0
这样做
在母版页中
<uc1:MyWebUserControl ID="myCtl" runat="server" ClientIDMode="Static" />
在内容页面中(在后面的代码中)
MyWebUserControl myWCtl = this.Master.FindControl("myCtl") as MyWebUserControl;
于 2012-10-12T07:14:50.557 回答