Ask a Question related to ASP.NET General, Design and Development.
-
Xavier MT #1
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
-
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? ... -
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... -
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 -
Globalization the DataGrid Columns
Hi, How can I change the DataGrid Columns caption(header text) programmatically? Thanks a lot, Salim -
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... -
Steve C. Orr, MCSD #2
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...well,> Hi, I have a site that has some text in spanish and it doesn't display> for example with a ñ it displays some weird boxes, can anyone help me or
> point me to some help
>
>
Steve C. Orr, MCSD Guest
-
Xavier MT #3
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...[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconencodingbasetypes.asp[/url]> Have you tried setting it to use unicode?
> Here's more info on the subject:
>>
> 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...> well,> > Hi, I have a site that has some text in spanish and it doesn't display>> > for example with a ñ it displays some weird boxes, can anyone help me or
> > point me to some help
> >
> >
>
Xavier MT Guest
-
Jerry III #4
Re: Problem with globalization
You can always use HTML entities, for example ñ is ñ or ñ. 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...are> Just one thing, I've tried some things but my problem is that my strings[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconencodingbasetypes.asp[/url]> 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:
> >or> >
> > 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...> > well,> > > Hi, I have a site that has some text in spanish and it doesn't display> > > for example with a ñ it displays some weird boxes, can anyone help me>> >> > > point me to some help
> > >
> > >
> >
>
Jerry III Guest



Reply With Quote

