全局隐式本地化和局部显式本地化。这可能吗?

发布于 2024-11-09 14:07:23 字数 31 浏览 0 评论 0原文

我们可以为控制设置全局隐式定位或局部显式定位吗?

Can we set global implicit localization for control or local explicit localization?

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

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

发布评论

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

评论(2

随遇而安 2024-11-16 14:07:23

如果你想使用隐式本地化,你必须使用App_LocalResources,所以“全局”实际上是不可能也不需要的。

显然,您可以将显式本地化与 App_LocalResources 一起使用,尽管我认为这里没有任何好处。

If you want to use implicit Localization, you have to use App_LocalResources, so "global" is not possible nor needed actually.

You can obviously use explicit Localization with App_LocalResources, although I see no benefit here.

喜你已久 2024-11-16 14:07:23

您在寻找这个 String Text = Resources.GlobalRes.KeyName 吗?这将从全局资源中获取资源文本。

如果你想从本地资源中获取值,那么它将是
GetLocalResourceObject("yourkey").ToString();

编辑:如果您想直接将全球资源文本设置为您的标签,请执行以下操作:

<asp:Label ID="Label4" runat="server" Text="<%$ Resources:GlobalRes, KeyName %>"></asp:Label>

Are you Looking this String Text = Resources.GlobalRes.KeyName ? This will get the resource text from the Global Resources.

And if you want to get the value from the local Resource, then it will be
GetLocalResourceObject("yourkey").ToString();

Edit: if you want to directly set the Gloabl Resource text to your label, do so as follows:

<asp:Label ID="Label4" runat="server" Text="<%$ Resources:GlobalRes, KeyName %>"></asp:Label>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文