I want to extend the WebFormViewEngine so that I can perform some post-processing - I want it to do it\'s stuff, then hand me the Html back, so I can do put some final touches t
You can use Action Filters to do this. Check out this tutorial at asp.net/mvc. You want to use a ResultsFilter.
As an alternate, you can override the virtual OnResultExecuted method of the Controller.