Is it possible to create any kind of handler to handle the output response from an ASP.NET page?
My scenario: I have a third party application (source code not provided) written in ASP.NET/C# hosted in IIS 7, and I want to create a 'handler' so that I can get the output HTML response and modify its HTML code.
To my knowledge, the pluggable HTTPModules and HTTPHandlers can only handle the request message, but not the output. Is it correct?
Any other method to achieve the same result?
Thanks in advance.