Author: Rick Strahl | Posted on: 1/1/2010 5:34:36 AM | Views : 1089

Response.Filter provides the ability to hook into the Response output stream to capture or manipulate the response ASP.NET sends back to the Web Server. Creating a Response.Filter involves creating a Stream subclass to capture the output and modifying it as content is output to the stream. To simplify this process,this article provides a generic ResponseFilterStream class that provides an easy to use event based and reusable class to capture and transform Response output in a variety of ways without having to create a new Stream implementation for each Filter. ...

Go to the complete details ...