I need to fix CurrentCulture as the invariant culture in an ASP.NET application. How can I do this?
Either add the following to your web.config file:
or you can add this statement on the page:
<%@ Page uiCulture="en-US" culture="en-US" %>
Hope this helps.