无法设置 asp:label 的文本属性

发布于 2024-07-26 19:47:14 字数 540 浏览 5 评论 0原文

好吧,我想我知道如何做到这一点......尽管距离我上次编写 .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 技术交流群。

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

发布评论

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

评论(1

相守太难 2024-08-02 19:47:14

子页面中的回发/视图状态处理可能会超出您在母版页中设置的值。

尝试移动第二个代码块,其中将 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.

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