Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML languages problem

Status
Not open for further replies.

ELROMB

Programmer
Joined
Dec 21, 2001
Messages
2
Location
IL
Hi Everybody,
On a big web project, using ASP & JavaScript, XML is used to get data from Database (Access) in different languages, includeing German,French,Korean etc. The xml are built with an asp page. Each time a charcter not plain English is used, an error occur in the xml page. This has something to do with the UTF16/8 format, but I was unable to find a solution, not even by converting to the correct UTF format. Do anyone have an idea how to solve it ? This should work on all languages windows NT/XP/2000 os. and MSIE 5.5 or higher.
10x in advance.
 
Do you try this xml format :

Response.ContentType="text/xml"
Response.Write(&quot;<?xml version='1.0' encoding='windows-1252'?>&quot;)
and then, send your xml data island
 
10x,
I found this yesterday, but 10x for your reply.
Elrom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top