I\'ve been trying for the last few days to get the height of a web page from the Document property of a WebBrowser control.
WebBrowser
Here\'s my latest attempt.
This worked for me:
webBrowser.Document.Body.ScrollRectangle.Height
Find the BODY tag and get the OffsetRectangle.Bottom of that element. This will give you the height of the page.