无法设置 asp:label 的文本属性
好吧,我想我知道如何做到这一点......尽管距离我上次编写 .Net 程序已经一年了。
更新: 我已将代码从 MasterPage 移至 aspx 模板。 并且仍然没有显示任何内容。
在我的 aspx 模板文件中,我有以下代码:
<asp:Content ContentPlaceHolderID="mainAndRightRegion" runat="server">
My label: <asp:Label ID="txtString" CssClass="myTestLabel" runat="server" />
</asp:Content>
在我的代码后面,我有以下代码:
private void Page_Load(object sender, System.EventArgs e)
{
this.txtString.Text = "TEST";
}
我在这里传递什么?
Ok, I thought I knew how to do this.... even though it has been one year since I last programmet .Net.
Update:
I've moved my code from the MasterPage to an aspx Template. And still nothing is displayed.
In my aspx templatefile I have the following code:
<asp:Content ContentPlaceHolderID="mainAndRightRegion" runat="server">
My label: <asp:Label ID="txtString" CssClass="myTestLabel" runat="server" />
</asp:Content>
In my code behind, I have the following code:
private void Page_Load(object sender, System.EventArgs e)
{
this.txtString.Text = "TEST";
}
What am I mssing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
子页面中的回发/视图状态处理可能会超出您在母版页中设置的值。
尝试移动第二个代码块,其中将
testLabel.Text = "Test"
设置为预渲染事件处理程序。Its possible that postback / viewstate handling in the child-page is blowing out the values you have set in the master page.
Try moving the second block of code, where you are setting
testLabel.Text = "Test"
to the prerender event handler.