Use Response.Filter to intercept your HTML
posted by ca8msm(429) 5 years, 1 month ago 0
I use it to alter the HTML that a 3rd party component outputs. I don't have direct access to change this from the control itself so this was an easy way of manipulating the HTML. This could have also been done with a httpModule (or on each page by overriding the page's Render method) however, I thought this was a more suitable approach as I could just apply it to whichever pages I wanted with one line of code.
Reply