Author: icm63 | Posted on: 9/12/2009 2:29:24 PM | Views : 1201

MS VS 2005 vb.net 2.0 (asp.net) ......NOT 3.5
 Can some convert this to clean vb.net..
HttpApplication app = sender as HttpApplication; string acceptEncoding = app.Request.Headers["Accept-Encoding"]; Stream prevUncompressedStream = app.Response.Filter; if (!(app.Context.CurrentHandler is Page || app.Context.CurrentHandler.GetType().Name == "SyncSessionlessHandler") || app.Request["HTTP_X_MICROSOFTAJAX"] != null) return;
 
...

Go to the complete details ...