i already read through all that lol and i didn't understand :(
Even I dont understand the whole article:icon_rolleyes:
But U just need to do this:
Include references to the Mshtml.dll file . To do this in your Visual C# .NET project, follow these steps:
1. Click Add Reference on the Project menu.
2. Click the COM tab.
3. Double-click Microsoft HTML Object Library.
On your View Source button or menu Click do this:
mshtml.HTMLDocument objHtmlDoc = (mshtml.HTMLDocument) webBrowser1.Document.DomDocument;
/*webBrowser1 is the WebBrowser Control showing your page*/
string pageSource = objHtmlDoc.documentElement.innerHTML;
/* pageSource string variable will contain the source of the page displayed in your browser control. You can dispaly it in whatever way u wish to */