tags:

views:

868

answers:

2

Hi There Does anybody know how to create a multilingual web application using Dynamic Data and be able to show any label or button in the correct language upon the selected culture?

+1  A: 

This question might well help:

How do you localize a data driven website

Zhaph - Ben Duguid
A: 

You can implement your own ResourceProviderFactory to get your localisations from wherever you want. We use a string as a key to look up the localisations:

For instance:

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