
Signature
Anthony Jones - MVP ASP/ASP.NET
Hi mister,
by another reason, I cannot change web.config and I have to use ISO-8859-1.
Another solution using iso-8859-1 ?? thanks.

Signature
http://www.alhambra-eidos.es/web2005/index.html
www.kiquenet.net
http://www.setbb.com/putainformatica/viewtopic.php?p=843
www.trabajobasura.com/solusoft
> > Hi
> >
[quoted text clipped - 18 lines]
> contain literal text which is 'non-english' consider saving them all as
> UTF-8 and changing fileEncoding to "UTF-8" as well.
Anthony Jones - 14 Feb 2008 10:56 GMT
> Hi mister,
>
> by another reason, I cannot change web.config and I have to use ISO-8859-1.
>
> Another solution using iso-8859-1 ?? thanks.
The first question that comes to mind is why can't the web.config settings
be changed? However...
In that case you must make sure that your files are saved as ISO-8859-1 (or
Windows-1252) which they will be if saves as ANSI on a machine using the
1252 codepage.
You can specify at the page level :-
<%@ Page ... ResponseEncoding="UTF-8" %>
Strictly speaking the AJAX post-backs should be specifying the charset of is
content which will override any global RequestEncoding, however I've never
tested that using a Fiddler trace.

Signature
Anthony Jones - MVP ASP/ASP.NET