I am currently using classic ASP to parse an XML file that contains text in Chinese.
I have no problem parsing the actual XML file and the XML nodes within the file.
The problem I am having is that the text within the actual XML nodes is chinese.
When I place the contents of the XML node (the chinese text) inside an ASP variable called "myvariable" and then I attempt to write it to the screen using Response.write(myvariable) I get nothing but question marks printed to the screen where the chinese letters should be.
I want to preserve the chinese lettering and have it writen to the screen unaltered.
Does anyone know why the chinese text is being converted to question marks when I store it in "myvariable" and then response.write(myvariable) to the screen?
Any help would be well appreciated.
I have no problem parsing the actual XML file and the XML nodes within the file.
The problem I am having is that the text within the actual XML nodes is chinese.
When I place the contents of the XML node (the chinese text) inside an ASP variable called "myvariable" and then I attempt to write it to the screen using Response.write(myvariable) I get nothing but question marks printed to the screen where the chinese letters should be.
I want to preserve the chinese lettering and have it writen to the screen unaltered.
Does anyone know why the chinese text is being converted to question marks when I store it in "myvariable" and then response.write(myvariable) to the screen?
Any help would be well appreciated.