对页面标题使用显式本地化表达式?

发布于 2024-10-31 15:21:58 字数 362 浏览 0 评论 0原文

我试图获得页面标题的显式本地化表达式,但似乎无法弄清楚如何实现,并且谷歌搜索什么也没有出现。

有了控件,一切就变得既美好又简单:

<asp:literal runat="server" text="<%$ Resources:MyResource, StringId %>" />

但是如何为页面标题做到这一点呢?我尝试在页面指令中指定它,但这当然不起作用:

<%@ Page Title="<%$ Resources:MyResource, StringId %>" ...

有办法做到这一点吗?或者这根本不可能?

I am trying to get an explicit localization expression for a page title, but can't seem to figure out how, and a google search comes up with nothing.

With a control, it's nice and easy:

<asp:literal runat="server" text="<%$ Resources:MyResource, StringId %>" />

But how does one do this for the page title? I've tried specifying it in the page directive, but that of course doesn't work:

<%@ Page Title="<%$ Resources:MyResource, StringId %>" ...

Is there a way to do this? Or is it simply not possible?

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

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

发布评论

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

评论(2

み格子的夏天 2024-11-07 15:21:58

您也可以使用

Page.Title = Resources.MyResource.StringId;

<title><%= Resources.MyResource.StringId %></title>

You can also use either

Page.Title = Resources.MyResource.StringId;

or

<title><%= Resources.MyResource.StringId %></title>
﹂绝世的画 2024-11-07 15:21:58

只需在页面加载事件中写入

Page.Title="any String u want";

simply in the page load event write

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