浏览模式: 普通 | 列表
4月, 2009 | 1

原创日志 bcastr 使用xml文件乱码的问题

[ 2009-04-03 09:20:47 | 作者: admin ]
解决办法,获取的xml用utf-8编码一下,下面给出c#演示
Response.ContentType = "text/xml";
Response.ContentEncoding = System.Text.Encoding.UTF8;
Response.Write(strXml);
1