.NET-全球化与本地化-深入研究系列(2) ASP.NET 2.0 本地化新特性
Localization
To localize, or to be more specific, to create a web application that can be multi-lingual was a complex task prior to ASP.NET v2.0. If you used resource files (RESX) and the ResourceManager you would need to separate out localizable elements manually and perform your own resource loading which required some effort and code. ASP.NET v2.0, simplifies this process greatly and brings a wealth of features such as:
- Auto detection of the Accept-Language HTTP request header field sent by the client browser
- Declarative resource expressions to tie controls or their properties to resources
- Programmatic access to resources and strongly-typed resources
- Automatic compilation and linking of RESX or RESOURCE files into runtime satellite assemblies
- Further design-time support for creation of resources
- A full extensibility model so that the RESX model can be swapped out
http://quickstart.developerfusion.co.uk/QuickStart/aspnet/doc/localization/localization.aspx
ASP.NET 2.0 Localization (Video, Whitepaper, and Database Provider Support)
Extending the ASP.NET 2.0 Resource-Provider Model