Board index » Web Programming » load xml with asp lost central european chars
|
gauxam2k
|
|
gauxam2k
|
load xml with asp lost central european chars
Web Programming316
Hi, my problem is that i load an xml file (which displayed well in iexplorer standalone) with an asp file, and the page displays o instead of ő, u instead of ű, so my central european characters are changed. the xml well formed, and well encoded. i hope ;) <?xml version="1.0" encoding="ISO-8859-2"?> <tests> <test>o</test> <test>ő</test> </tests> - |
| Martin
Registered User |
Sat Jan 10 09:36:30 CST 2004
Re:load xml with asp lost central european charsbadd wrote: Quotemy problem is that i load an xml file (which displayed processes the XML and sends output to the browser. -- Martin Honnen JavaScript.FAQTs.com/">JavaScript.FAQTs.com/ - |
| badd
Registered User |
Mon Jan 12 02:41:38 CST 2004
Re:load xml with asp lost central european charsQuote-----Original Message----- the solution was, that i had to write a <%@ CodePage=1250 %> line to the asp. anyway, it was simple: Set xmlDoc = CreateObject("Microsoft.XMLDOM") xmlDoc.async="false" xmlDoc.load(Server.MapPath("test.xml")) - |
