日期:2014-05-16 浏览次数:20360 次
<meta http-equiv="Content-Type" content="text/xml;charset=utf-8" />
------解决方案--------------------
不需要输出 <meta http-equiv="Content-Type" content="text/xml;charset=utf-8" />
看服务器端用什么写了
类似 Response.ContentType = "text/xml"
紧接着输出<?xml ...?> ,之前不要有其他字符。
------解决方案--------------------
StreamReader sr = new StreamReader(Server.MapPath("aa.xml"), System.Text.Encoding.UTF8);
string str = sr.ReadToEnd();
Response.ContentType = "text/xml";
Response.Write(str);
// ...