ASP.NET: HttpModule
How can I check what content has been开发者_开发知识库 sent by or buffered into a Response in my HttpModule?
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
精彩评论