0

我正在遵循以下答案以实现全球化。 ASP.Net MVC 3 中的全球化

然而,我失败了。

我收到以下行的编译失败错误:

using ViewResources;

我创建了 Resources 文件夹,每个语言环境创建了 2 个资源文件(ViewResources.resx,ViewResources.en.resx),添加了

<add namespace="ViewResources" />

到 Views 文件夹中的 web.config ,它像老板一样失败。 Compiler Error Message: CS0246: The type or namespace name 'ViewResources' could not be found (are you missing a using directive or an assembly reference?)

4

1 回答 1

1

您需要将文件类型指定为“嵌入式资源”,为此在解决方案资源管理器中选择文件,右键单击-> 选择属性,将构建操作更改为“嵌入式资源”

于 2013-09-23T19:31:28.290 回答