1
votes
votes
1 answers
Using WebBrowser Control in C#
I have code such as this: string url = "http://en.wikipedia.org/wiki/Earth"; System.Windows.Forms.WebBrowser wb = new System.Windows.Forms.WebBrowser(); wb.Url = new Uri(url); but after that last line wb.Url is a ...
