Trying to implement the following code:
using (WebBrowser brows = new WebBrowser()) { brows.Navigate(new Uri(this.url)); richTextBox1.Text = brows.DocumentText.ToString(); }
However, brows.DocumentText contains nothing. There is no browser on the form. How to fix the problem?