Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Regional settings

    Hi,

    I'm builiding an asp.net application on a Windows XP Professional machine.

    My regional settings are dutch but the datatype money is still in dollars
    and the dates m/d/y format. Is there a possibility to change that?

    Thanks in advance.

    Regards René.


    René de Leeuw Guest

  2. Similar Questions and Discussions

    1. Weird DateTime Regional Problem
      Hi, I have a web service that records the status of our engineers, e.g on route, on site, departed or abort current job. This uses...
    2. Regional settings and web services
      I have a web service which returns a dataset. This web service is called by a windows form. If i open the application, change the regional settings...
    3. Regional Settings Tool?
      Is there a tool that will allow me to save or change Windows Regional Settings? I've googled and CPANned without luck. Steve...
    4. problem with regional & language settings
      Hi, I have an asp.net web form that uses a rangevalidation control to validate a date field. My regional settings are set to Australia and it...
    5. convert numbers from regional form to SQL
      On Tue, 22 Jul 2003 17:50:15 +0300, "Sergey Bogdanov" <des@softex.lv> wrote: This isn't actually going to work at all if Number is a number...
  3. #2

    Default Re: Regional settings

    Change the CurrentCulture and the CurrentUICulture on the thread.


    "René de Leeuw" <rene.de.leeuw@motifact.nl> wrote in message
    news:u9YCbrIQDHA.3236@TK2MSFTNGP10.phx.gbl...
    > Hi,
    >
    > I'm builiding an asp.net application on a Windows XP Professional machine.
    >
    > My regional settings are dutch but the datatype money is still in dollars
    > and the dates m/d/y format. Is there a possibility to change that?
    >
    > Thanks in advance.
    >
    > Regards René.
    >
    >

    Jason Guest

  4. #3

    Default Re: Regional settings

    Hi,

    Great it works fine now.

    This is the setting for dutch regional output:

    <globalization
    fileEncoding="utf-8"
    requestEncoding="utf-8"
    responseEncoding="utf-8"
    culture="nl-NL"
    uiCulture="nl-NL"
    />
    Thanks

    René.

    "Jason" <123456789clopper@totalise.co.uk987654321> wrote in message
    news:Oy7BphJQDHA.1556@TK2MSFTNGP10.phx.gbl...
    > Change the CurrentCulture and the CurrentUICulture on the thread.
    >
    >
    > "René de Leeuw" <rene.de.leeuw@motifact.nl> wrote in message
    > news:u9YCbrIQDHA.3236@TK2MSFTNGP10.phx.gbl...
    > > Hi,
    > >
    > > I'm builiding an asp.net application on a Windows XP Professional
    machine.
    > >
    > > My regional settings are dutch but the datatype money is still in
    dollars
    > > and the dates m/d/y format. Is there a possibility to change that?
    > >
    > > Thanks in advance.
    > >
    > > Regards René.
    > >
    > >
    >
    >

    René de Leeuw Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139