flash+ashx读取xml中文乱码解决方法

作者:互联网   出处:控件中国网   2014-11-05 19:04:44   阅读:3

控件中国网——中国最专业的控件产品服务网站

flash+ashx读取xml中文乱码解决方法

在Ria项目中经常使用ashx输出xml,直接在Chrome/FF/IE中显示正常,但是Flash读取的是都是中文乱码。

ashx默认的内容类型是"text/plain",改为"text/xml"后,Flash获取还是中文乱码;Response.Write加上<?xml version="1.0" encoding="utf-8"?>表头还是不行;使用System.Text下的特定转码还是不行;改为gb2312编码还是不行.....

 

多次尝试后解决方法如下:

context.Response.ContentType = "text/xml";

//获取当前的系统的编码  flash中就不会出错了 都是如果含有cdata的节点ie中会出错,flash中正常(-_-)
context.Response.ContentEncoding = System.Text.Encoding.Default;   
context.Response.Cache.SetCacheability(HttpCacheability.Public);
context.Response.BufferOutput = false;

web.config中加入:

 <system.web>
        <globalization requestEncoding="utf-8" responseEncoding="utf-8"/>
</system.web>

控件中国网——中国最专业的控件产品服务网站

 

Copyright© 2006-2015 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 渝ICP备12000264号 法律顾问:元炳律师事务所
客服软件
live chat