Problem with globalization

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

  1. #1

    Default Problem with globalization

    Hi, I have a site that has some text in spanish and it doesn't display well,
    for example with a ñ it displays some weird boxes, can anyone help me or
    point me to some help


    Xavier MT Guest

  2. Similar Questions and Discussions

    1. globalization problem
      I need to be able to change the header text language. When I change the text my sort hyperlink disappears. Does anyone know how to get it back? ...
    2. Problem with Apache Web Server config file and PHP (please give advice on what problem may be me)
      HI: Can anyone refer me to someone that can help with the problem below. I installed Apache Web Server on my laptop which has Windows XP. I...
    3. Globalization the DataGrid automatic Columns
      Hi, How can I change the DataGrid Columns caption(header text) programmatically if I created the columns automatically Thanks a lot, Salim
    4. Globalization the DataGrid Columns
      Hi, How can I change the DataGrid Columns caption(header text) programmatically? Thanks a lot, Salim
    5. Nasty bug in documentation regarding globalization - wrong Culture Info name for Serbian (Cyrilic)
      I found nasty "documentation" bug; ms-help://MS.VSCC/MS.MSDNVS/cpref/html/frlrfsystemglobalizationcultureinfoclasstopic.htm claims that proper...
  3. #2

    Default Re: Problem with globalization

    Have you tried setting it to use unicode?
    Here's more info on the subject:
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconencodingbasetypes.asp[/url]

    Also, have you checked the Globalization section of the web.config?
    Try changing it to something more like this:

    <!-- Web.Config Configuration File -->
    <configuration>
    <system.web>
    <customErrors mode="Off"/>
    <globalization
    fileEncoding="iso-8859-1"
    requestEncoding="iso-8859-1"
    responseEncoding="iso-8859-1"
    />
    </system.web>
    </configuration>

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "Xavier MT" <xmorera@hotmail.com> wrote in message
    news:O5bA4ZtWDHA.1912@TK2MSFTNGP11.phx.gbl...
    > Hi, I have a site that has some text in spanish and it doesn't display
    well,
    > for example with a ñ it displays some weird boxes, can anyone help me or
    > point me to some help
    >
    >

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Problem with globalization

    Just one thing, I've tried some things but my problem is that my strings are
    in a .js and it's when they are written page that it doesn't work.

    BTW thanks for the help, I'll keep on trying...

    "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    news:%23Q8jQqtWDHA.388@TK2MSFTNGP10.phx.gbl...
    > Have you tried setting it to use unicode?
    > Here's more info on the subject:
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconencodingbasetypes.asp[/url]
    >
    > Also, have you checked the Globalization section of the web.config?
    > Try changing it to something more like this:
    >
    > <!-- Web.Config Configuration File -->
    > <configuration>
    > <system.web>
    > <customErrors mode="Off"/>
    > <globalization
    > fileEncoding="iso-8859-1"
    > requestEncoding="iso-8859-1"
    > responseEncoding="iso-8859-1"
    > />
    > </system.web>
    > </configuration>
    >
    > --
    > I hope this helps,
    > Steve C. Orr, MCSD
    > [url]http://Steve.Orr.net[/url]
    >
    >
    > "Xavier MT" <xmorera@hotmail.com> wrote in message
    > news:O5bA4ZtWDHA.1912@TK2MSFTNGP11.phx.gbl...
    > > Hi, I have a site that has some text in spanish and it doesn't display
    > well,
    > > for example with a ñ it displays some weird boxes, can anyone help me or
    > > point me to some help
    > >
    > >
    >
    >

    Xavier MT Guest

  5. #4

    Default Re: Problem with globalization

    You can always use HTML entities, for example ñ is &#241; or &ntilde;. You
    need to make sure your page encoding is right and you're using font that has
    the characters you're trying to display.

    Jerry

    "Xavier MT" <xmorera@hotmail.com> wrote in message
    news:%23rf6IttWDHA.2040@TK2MSFTNGP11.phx.gbl...
    > Just one thing, I've tried some things but my problem is that my strings
    are
    > in a .js and it's when they are written page that it doesn't work.
    >
    > BTW thanks for the help, I'll keep on trying...
    >
    > "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    > news:%23Q8jQqtWDHA.388@TK2MSFTNGP10.phx.gbl...
    > > Have you tried setting it to use unicode?
    > > Here's more info on the subject:
    > >
    >
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconencodingbasetypes.asp[/url]
    > >
    > > Also, have you checked the Globalization section of the web.config?
    > > Try changing it to something more like this:
    > >
    > > <!-- Web.Config Configuration File -->
    > > <configuration>
    > > <system.web>
    > > <customErrors mode="Off"/>
    > > <globalization
    > > fileEncoding="iso-8859-1"
    > > requestEncoding="iso-8859-1"
    > > responseEncoding="iso-8859-1"
    > > />
    > > </system.web>
    > > </configuration>
    > >
    > > --
    > > I hope this helps,
    > > Steve C. Orr, MCSD
    > > [url]http://Steve.Orr.net[/url]
    > >
    > >
    > > "Xavier MT" <xmorera@hotmail.com> wrote in message
    > > news:O5bA4ZtWDHA.1912@TK2MSFTNGP11.phx.gbl...
    > > > Hi, I have a site that has some text in spanish and it doesn't display
    > > well,
    > > > for example with a ñ it displays some weird boxes, can anyone help me
    or
    > > > point me to some help
    > > >
    > > >
    > >
    > >
    >
    >

    Jerry III 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