ASP.NET Localization

  • Thread starter Thread starter Dan Cimpoiesu
  • Start date Start date
D

Dan Cimpoiesu

How do I achieve this:

I have an ASP.NET application
I create a custom CultureInfo instance with the NumberFormat setted up by me
at runtime.
I want to apply this CultureInfo to all pages.
I tried with (in Windows Forms it works)

System.Threading.CurrentThread.CurrentUICulture=myCulture
System.Threading.CurrentThread.CurrentCulture=myCulture

in the Session_Start but it does not take my formattings in the pages

Ant suggestions?
 
I vaguely think I remember something about setting currentculture before
currentuiculture, not sure
 
Back
Top