In vb.net or C# web sites
How do I access the final html just before it leaves the server so that I can make a final html tweaks from the code-behind.( I don’t want to use JavaScript to make these adjustments)
Will it be the page PreRenderComplete event that will be the last event that fires that I will be able to see the html that is sent to the browser which I will be able to edit the html with HtmlAgilityPack?
This must be easy to do and possible
Thanks
Hi I just wanted to share what I came up with after reading the responses to my post and doing some searching online and with reference to this forum post here http://forums.asp.net/t/1146098.aspx/1 and using HtmlAggilityPack http://htmlagilitypack.codeplex.com/wikipage?title=Examples
Here is the code