• XmlTextWriter输出xml到页面的问题


    protected void Page_Load(object sender, EventArgs e)
     {
                Response.ContentType = "text/xml";
                this.Response.Clear();
                XmlTextWriter xtw = new XmlTextWriter(Response.OutputStream, Encoding.UTF8);
                xtw.Formatting = Formatting.Indented;
                xtw.Indentation = 3;
                xtw.WriteStartDocument(true);
                xtw.WriteStartElement("data");
                xtw.WriteAttributeString("dd", "xx");
                xtw.WriteEndElement();
                xtw.WriteEndDocument();
                Response.End();
     }
     
    输出的结果不对。最后从网上看到少了两句:
    protected void Page_Load(object sender, EventArgs e)
     {
                Response.ContentType = "text/xml";
                this.Response.Clear();
                XmlTextWriter xtw = new XmlTextWriter(Response.OutputStream, Encoding.UTF8);
                xtw.Formatting = Formatting.Indented;
                xtw.Indentation = 3;
                xtw.WriteStartDocument(true);
                xtw.WriteStartElement("data");
                xtw.WriteAttributeString("dd", "xx");
                xtw.WriteEndElement();
                xtw.WriteEndDocument();
                xtw.Flush();
                xtw.Close();
                Response.End();
     }
     
    经过测试, Flush和Close方法只要有其一就可以正常。最好应该是两个都要。真是郁闷,xmltextwriter竟然不能自己提交缓存。
    另外需要注意Response.End()也不能缺少。
     
  • 相关阅读:
    vue 解决 打包完iE下空白
    多层josn数据 修改
    vue 初始化data中的数据
    图片查看器(缩放 拖动)
    js 懒加载
    css flex 兼容ios android--商品展示 添加购物车
    领域驱动架构(DDD)建模
    知乎复制文本
    Nlog配置文件
    未能加载文件或程序集“xxx”或它的某一个依赖项。生成此程序集的运行时比当前加载的运行时新,无法加载此程序集
  • 原文地址:https://www.cnblogs.com/worldreason/p/1255164.html
Copyright © 2020-2023  润新知