代码之家  ›  专栏  ›  技术社区  ›  andres descalzo

在EndRequest事件中读取HttpContext.Current.Request

  •  0
  • andres descalzo  · 技术社区  · 15 年前

    在EndRequest事件或其他事件中,如何在发送到客户端之前读取输出请求(myxmlData)?

    protected void Page_Load(object sender, System.EventArgs e)
    {
      string myxmlData = MyObject.DataXML();
    
      Response.ContentType = "text/xml";
      Response.Write(myxmlData);
      Response.End();
    }
    
    1 回复  |  直到 15 年前
        1
  •  1
  •   JamieGaines    15 年前