HTMLDocument
-
How can I get HTMLDocument of an URL? I need to get HTMLDocument from a bulk url. I think I can't use WebBrowser because it needs to wait until the document is competed.
Don't work hard, but work effectively. Travel guide | invest money
-
How can I get HTMLDocument of an URL? I need to get HTMLDocument from a bulk url. I think I can't use WebBrowser because it needs to wait until the document is competed.
Don't work hard, but work effectively. Travel guide | invest money
you can use WebBrowser.Document, which is available when the document is complete, hence look for the WebBrowser.DocumentCompleted event. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.
[The QA section does it automatically now, I hope we soon get it on regular forums as well]
-
you can use WebBrowser.Document, which is available when the document is complete, hence look for the WebBrowser.DocumentCompleted event. :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]
I only read code that is properly formatted, adding PRE tags is the easiest way to obtain that.
[The QA section does it automatically now, I hope we soon get it on regular forums as well]
I know the webbrowser. I'm looking for another way, maybe download it as a string and convert it into HTML document?
Don't work hard, but work effectively. Travel guide | invest money