data size in webBrowser component help...

  • Thread starter Thread starter trint
  • Start date Start date
T

trint

Is there a way to know the size of the page loaded into a webbrowser
component?

like:

webBrowser1.sizeofpageloaded ?
Any help is appreciated.
Thanks,
Trint
 
If there is, it wouldn't be on the WebBrowser control, it would be on the
Document object that represents what is loaded (such as .Length, if there is
such a property).
Otherwise you would have to get the InnerHtml of the document and compute
it's length.
Peter
 
Back
Top