Either add the following to your web.config file:
<system.web>
<globalization culture="en-US" uiCulture="en-US" />
</system.web>
or you can add this statement on the page:
<%@ Page uiCulture="en-US" culture="en-US" %>
Hope this helps.
Either add the following to your web.config file:
<system.web>
<globalization culture="en-US" uiCulture="en-US" />
</system.web>
or you can add this statement on the page:
<%@ Page uiCulture="en-US" culture="en-US" %>
Hope this helps.