I need to fix CurrentCulture as the invariant culture in an ASP.NET application. How can I do this?
<configuration>
<system.web>
<globalization culture="???" />
...
|
I need to fix CurrentCulture as the invariant culture in an ASP.NET application. How can I do this?
|
||||
|
|
|
According to the CultureInfo class documentation, an empty string specifies InvariantCulture. Edit (tested on .NET 3.5 sp1) The @Page directive could be interfering with you. If you used the "Generate Local Resources" tool of the page designer, it automatically adds culture="auto" uiculture="auto" to your page directive, which overrides the web.config. If you just delete those and someone uses that tool later, whammo, they come back, set to auto, bugging up your application. If you try to set them to "", you get an error. Try setting both the web.config and page directive to this and hope for the best?
|
|||||||||||
|
|
Either add this to your web.config file:
or you can add this statement on the page:
Hope this help. |
||||
|
|