I have this C# code:
Thread.CurrentThread.CurrentCulture = new CultureInfo(cultureName);
dateScale.EndDate.ToString("dd/MMMM", CultureInfo.CurrentCulture);
If I set culture to be "zh-HK"
, in ASP.NET the output is in English.
But when the same logic is ran as a unit test (so same as running as a WinForms app), the output is in Chinese.
The server where you are running your asp.net website have the correct Language Packs installed?
Default .NET framework instalations, have language neutral binaries. I belive that for chinese you need to install Language specific Language Packs.
You can get more info on here
http://msdn.microsoft.com/en-us/library/vstudio/5a4x27ek(v=vs.100).aspx
UPDATE: As Panagiotis Kanavos wrote, this is only for string output, like days of the week. Why are you setting the culture in the Thread? You should specify the culture in the web.config.