W
wzhleiid
Unregistered / Unconfirmed
GUEST, unregistred user!
我现在用delphi的ADO保存了一个XML文件,然后通过 XMLhttp 在客户端得到这个文件
但不知道为什么 xmlhttp.responseText 的内容中的中文出现乱码 不知道该怎么解决
服务器端
load(xml文件)
Response.ContentType :='text/xml; charset=gb2312'
response.write(XML文件内容)
客户端 :
xmlhttp.Open("Get","GetTblStudent.asp",false);
xmlhttp.send();
document.write('<xmp>') ;
document.write(xmlhttp.responseText) ;
document.write('</xmp>') ;
为何中文显示的是乱码
但不知道为什么 xmlhttp.responseText 的内容中的中文出现乱码 不知道该怎么解决
服务器端
load(xml文件)
Response.ContentType :='text/xml; charset=gb2312'
response.write(XML文件内容)
客户端 :
xmlhttp.Open("Get","GetTblStudent.asp",false);
xmlhttp.send();
document.write('<xmp>') ;
document.write(xmlhttp.responseText) ;
document.write('</xmp>') ;
为何中文显示的是乱码