MSVS 2005 VB.net 2005
I followed this link...http://www.stardeveloper.com/articles/display.html?article=2007110401&page=1
Installed this code into my asp asjax site.
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.IO.Compression" %>
Protected Sub Application_PreRequestHandlerExecute(ByVal sender As Object, ByVal e As System.EventArgs)
Dim app As HttpApplication = TryCast(sender, HttpApplication)
Dim acceptEncoding As String = app.Request.Headers("Accept-Encoding")
Dim prevUncompressedStream As Stream = app.Response.Filter
If Not (TypeOf app.Context.CurrentHandler Is Page OrElse _
app.Context.CurrentHandler.IsReusable.GetType().Name = "SyncSessionlessHandler") OrElse _
app.Request("HTTP_X ...
Go to the complete details ...