Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: setting default locale

  1. #1
    chrisjob012 is offline Junior Member
    Join Date
    Apr 2009
    Posts
    14

    Default setting default locale

    Hi,

    How do I make my site to go to the UK version of the site rather than the US version?

    Where do I change this default setting?

    So, if a new user accesses the site, he is taken to the English-United Kingdom site than the US Site

    Regards,

    Chris

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    The default site locale can be set in your web.config file

    You can change these lines according to your default locale:

    Code:
    <add key="DBSQLServerLocaleSetting" value="en-US" /> 
    
    <globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="en-US" uiCulture="en-US" />
    DBSQLServerLocaleSetting = depends on where your DB was hosted.
    Last edited by Rob; 05-20-2009 at 09:54 PM.