http://www.dotnet247.com/247reference/msgs/11/56463.aspx
Matt Hooper
Microsoft ASP.NET Developer Support
You can simply add assembly resource files (.resx files) to your project
and VS.NET will compile them into satellite assemblies automatically. For
example, if the following files are adding to a project called MyProject:
stuff.en-us.resx
stuff.es.resx
more_stuff.en-us.resx
more_stuff.es.resx
VS.NET will output two satellite assemblies (one per locale) into the
project directory:
/bin/en-us/MyProject.resources.dll
/bin/es/MyProject.resources.dll
To manually add a assembly resource file from VS.NET by right-clicking on
the project > Add New Item > Assembly Resource File.
Also, VS.NET automatically adds a resx file for each web form in the
project. That are automatically linked into the project's primary assembly.
You can see them by in the Solution Explorer window by the following steps:
1. Select the web application project.
2. Click the "Show All Files" button.
3. Expand one of the web form nodes that the project contains until a
.resx file is visible.
Try using this approach to create the resource manager:
ResourceManager resources = new ResourceManager(
"<WebProjectName>.<ResName>",
Assembly.GetExecutingAssembly(),
null );
...where the resx files are named:
<ResName>.<Culture>.resx
The code below would create the resource manager that could be used in the
"MyProject" example from my earlier post:
ResourceManager resources = new ResourceManager(
"MyProject.stuff",
Assembly.GetExecutingAssembly(),
null );
You may also want to consider creating a only a single instance of the
ResourceManager for your web app that is kept in a static class member or
the Application object. This cause the resources to be loaded only once
per application.
Response.Write(rm.GetString("Test1"));
本文介绍了在VS.NET中处理ASP.NET项目资源文件的方法。可直接添加.resx文件,VS.NET会自动编译成附属程序集;也能手动添加。还说明了如何查看项目中与每个Web表单关联的resx文件,以及创建资源管理器的代码示例,建议为Web应用创建单个资源管理器实例。
622

被折叠的 条评论
为什么被折叠?



