It would be really nice if somehow we can capture the entire HTML that is being sent to the browser. This will allow us to perform last second changes to the
HTML. Fortunately, ASP.NET include Response Filters. Response Filters allows to intercept the response and give you the opportunity to alter the response. In this article we are going to create a ViewStateMover ResponseFilter which will move the ViewState from the top to the bottom of the page. ...
Go to the complete details ...