但是显示错误: The resource object -6ren">
gpt4 book ai didi

c# - 从 WebForms 应用程序使用类库中的资源

转载 作者:太空宇宙 更新时间:2023-11-03 15:29:59 25 4
gpt4 key购买 nike

在我的应用程序中有一个类库项目和一个网站。我在类库中创建了一个资源文件,它的修饰符是公共(public)的。我需要在网站层使用这个资源:

<asp:Label ID="Label2" runat="server" Text="<%$ Resources:resourceName, ErrorEmptyName %>"></asp:Label>

但是显示错误:

The resource object with key 'ErrorEmptyName' was not found.

但在代码隐藏中我访问了这个 key :

Label1.Text = resourceName.ErrorEmptyName;

没有错误。

我找到了这个页面,但我不能使用: Referencing resource files from multiple projects in a solution

怎么了?怎么做?

最佳答案

你可以使用代码

<asp:Label ID="Label2" runat="server" Text="<%# resourceName.ErrorEmptyName %>"></asp:Label>

也许您需要导入您的命名空间。

关于c# - 从 WebForms 应用程序使用类库中的资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34119078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com