Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: Cannot return XML with UTF-8 chars with ASP.

From: "Joe Fawcett" <joefawcett@----------.------>
To: NULL
Date: 10/2/2005 7:18:00 AM
"brb" <b_bertan@h...> wrote in message 
news:uBGylL1xFHA.1256@T......
>I am trying to return XML through an ASP page and it simply fails when the XML 
>contains characters with ascii value is > 128.  While I generate my data 
>dynamically, this simple example -- note the currency symbol -- displays the 
>same error: "An invalid character was found in text content.". It displays 
>properly if I use a $ instead of the £
> ------------------------------------------------------------------
> <%@ Language=VBScript %>
> <%Response.ContentType="text/xml"%>
> <%
> Response.Write "<?xml version=""1.0"" encoding=""UTF-8""?>"
> Response.Write "<text>Cost £200</text>"     %>
> -------------------------------------------------------------
>
> Thanks,
>
> --Brian
>
Try adding:
Response.CodePage = 65001
Response.CharSet = "utf-8"

before your response.write statements.
The first response.write setting the XML declaration can be missed out.

-- 

Joe 




transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent