I have this piece of code:
WebBrowser wb = new WebBrowser(); wb.Navigate(URL); HtmlDocument doc = wb.Document;
I should mention that I do not have a WebBrowser control in the form, this is just a method in my class. After that, wb.Document and doc are also zeros. Why is this? What do I need to do to get this document?
wojciech_rak
source share