views:

28

answers:

1

I have a asp.net web application project, with some global resources. If i deploy to my dev machine, the resources are used correctly, however in the production server the text appears in the default language so the global resources are not being read.

Any ideas? (i copied the App_GlobalResources directory to the production web dir root)

A: 

Dear Hugo, App_GlobalResources contains globalresources which inherit from currentculture so if you have 1 - 2 or more languages you have to create a different global resources for each of them. for example

CommonResource.en-US.resx

CommonResource.fa-IR.resx

CommonResource.-----.resx
Nasser Hadjloo