Search

You searched for the word(s): userid:691582

Matching Posts

  • bug - WebResource.axd not working with Response.Filter set

    There is a bug in handling WebResource.axd requests when Response.Filter property is set. To reproduce this error try putting following method in global asax and check for length of response from WebResource.axd protected void Application_BeginRequest(object sender, EventArgs e) { Response.Filter = new BufferedStream(Response.Filter); } and navigate to any page containing reference to embeded resource. Above should work fine withh all pages but WebResource.axd returns empty conent. reagrds, Pawel
    Posted to HttpHandlers and HttpModules (Forum) by vovin on 11/9/2006
  • bug in GzipStream on Response.Filter after Response.Flush

    I've discovered a bug, which results in truncation of the end of the response on gzipped stream. Reponse content is cut when using gzipped (or deflated) stream on Response.Filter and calling both Response.Flush and Response.End. To reproduce the bug following code may be used: public class FlushTestPage : System.Web.UI.Page { protected override void OnInit(System.EventArgs e) { base.OnInit(e); Response.Filter = new System.IO.Compression.GZipStream(Response.Filter, System.IO.Compression.CompressionMode
    Posted to Web Forms (Forum) by vovin on 11/9/2006
Page 1 of 1 (2 items)