views:

52

answers:

1

How can I check what content has been sent by or buffered into a Response in my HttpModule?

+3  A: 

You look directly at the Response.OutputStream property maybe. If you wanted to actually modify the output, the best thing would be to write an implementation of stream and set it to Response.Filter

Good luck

Michael Baldry