导航

将xml文件内容输出到aspx页面

Posted on 2009-08-25 13:39  阳光有约  阅读(292)  评论(0编辑  收藏  举报

        XmlDocument xml = new XmlDocument();
        xml.Load("f://tem.xml");

       
        Response.Charset = "gb2312";
        Response.ContentType = "text/xml";
        Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
        Response.Write(xml.InnerXml);//不可以直接为xml对象,这样是出错的 哈

       还有一点也比较重要,
           对应的xml文件如果添加首行了 <?xml version="1.0" encoding="UTF-8"?>
            在ie6下 还必须保证 econding 要Response.Charset 设置的一样 ,要不还是会出错的哦