IIS showing $ instead of £ on asp page

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default IIS showing $ instead of £ on asp page

    I just built an asp page taking values from sql server and need the currency
    in £. this worked for about a week and now my currency has changed to $ how
    do I correct this. My system locale is set to £

    Thanks


    majek Guest

  2. Similar Questions and Discussions

    1. Page not showing
      Can anyone explain why a page can be available to edit in Contribute3 yet not visible in the site list when using the choose option. It appears to...
    2. Page not showing on other machines
      I've created a form and uploaded it, but I can only see it in Safari on my machine. I can't view it in any other browser on my machine, or in ANY...
    3. PHP PAGE SHOWING BLANK PAGE
      Hi ppl, Am having trouble with Dreamweaver/PHP. I have Sokkit v3.5 (Formerly known as PHPTriad) With Apache/2.0.49 (Win32) PHP/4.3.6 and MySQL...
    4. web page not showing
      I have uploaded several pages to the web from publisher .htm file. The latest one however seems to load fine but when I go to view it, nothing...
    5. Portion of page showing a different url
      Yes it sounds like frames would likely be the best approach for this kind of design. Here's more info:...
  3. #2

    Default Re: IIS showing $ instead of £ on asp page

    majek wrote:
    > I just built an asp page taking values from sql server and need the
    > currency in £. this worked for about a week and now my currency has
    > changed to $ how do I correct this. My system locale is set to £
    >
    > Thanks
    Your system's locale may be set to pounds, but the settings for the IUSR
    account may not. This can happen if you've had to reinstall IIS, creating a
    new IUSR account with the default settings, which happen to be US $. Log in
    as IUSR and see if the settings need to be changed.

    You should not rely on the IUSR account's settings being correct. You would
    be better off creating a function that appends the proper curency symbol to
    whatever value is passed to it and returns it as a string which can be
    written to the response.

    HTH,
    Bob Barrows


    Bob Barrows Guest

  4. #3

    Default Re: IIS showing $ instead of £ on asp page

    You can force the locale in your ASP page:

    [url]http://support.microsoft.com/?id=229690[/url]

    Cheers
    Ken

    "majek" <a_majek@hotmail.com> wrote in message
    news:uZy5%23pLhDHA.1200@TK2MSFTNGP12.phx.gbl...
    : I just built an asp page taking values from sql server and need the
    currency
    : in £. this worked for about a week and now my currency has changed to $
    how
    : do I correct this. My system locale is set to £
    :
    : Thanks
    :
    :


    Ken Schaefer 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