ASP.NET Dynamic Data - Globalization and Localization

Does anyone know how to create a multilingual web application using dynamic data and be able to show any tag or button in the correct language in the chosen culture?

+3
source share
2 answers

You can implement your own ResourceProviderFactoryto get localization wherever you are. We use the string as a key to search for localization:

For example:

<asp:Literal Text="<%$ Resources: DBLanguageProvider, Module/Area/HelpMessage %>" runat="server" />
0
source

All Articles