Posted on: 10/12/2014 10:43:30 PM | Views : 440

Hi,
Having changed to asp net controls I have come across a strange behaviour to me:
before in html text I called a variable from global resource using:
value="<%= Resources.text.go%>" On the master page culture is set to a specific language depending on the URL called. e.g. http://www.translating-it.eu/lu/eifeler-regel-letzebuergesch-checker would generate Luxembourgish, http://www.translating-it.eu/en/eifeler-regel-letzebuergesch-checker English aso.
Now since I use asp net controls this culture setting from master page seems to get overridden for the controls. Outside the controls it is correctly set to the language for the URL but inside the control for some reason asp net uses German in my case, which I guess is because the browser has German as default language.
to display the string I use
text="<%$ Resources:text, go %>" ...

Go to the complete details ...