我在global.ascx中添加了一个名为Application_PreRequestHandlerExecute的方法,如下所示:
void Application_PreRequestHandlerExecute(object sender, EventArgs e)
{
string cTheFile = HttpContext.Current.Request.Path;
string sExtentionOfThisFile = System.IO.Path.GetExtension(cTheFile);
if (sExtentionOfThisFile.Equals(".aspx", StringComparison.InvariantCultureIgnoreCase))
{
HttpApplication httpApp = (HttpApplication)sender;
string acceptEncoding = httpApp.Request.Headers["Accept-Encoding"];
if (string.IsNullOrEmpty(acceptEncoding))
{
return;
}
acceptEncoding = acceptEncoding.ToLower();
System.IO.Stream requestStream = httpApp.Response.Filter;
if (acceptEncoding.Contains("gzip"))
{
httpApp.Response.Filter = new System.IO.Compression.GZipStream(requestStream,
System.IO.Compression.CompressionMode.Compress);
httpApp.Response.AppendHeader("Content-Encoding", "gzip");
}
else if (acceptEncoding.Contains("deflate"))
{
httpApp.Response.Filter = new System.IO.Compression.DeflateStream(requestStream,
System.IO.Compression.CompressionMode.Compress);
httpApp.Response.AppendHeader("Content-Encoding", "deflate");
}
}
}
浏览普通页面时有效。
但如果页面包含UPDATE-PANEL错误将会发生。 我得到一个PageRequestParserException。 当update-panel异步回发时,会发生此错误。
任何想法?
答案 0 :(得分:0)
通过在我的页面上将EnableEventValidation设置为false并将压缩逻辑移动到页面的构造函数来“修复”。 显然这不是一个好的解决方案(密切验证)。 如果有人知道一个好的解决方案,请告诉我。
并发现如果项目的框架版本是3.5,一切正常, 但如果版本是2.0。这个错误会发生。