I want to access the raw HTML that ASP.NET System.Web.UI.Page is going to do.
How can i do this? Is there a property or method like System.Web.UI.Page.HTML or something like that.
I know that I could iterate over the list of controls and access all Literal controls, etc., but I was wondering if there is a direct property or method that can return me raw html that I can change right before page rendering.
source
share