A
Abc
I have some code for loading HTML od web page:
String Something = "";
System.Net.WebClient WC = new System.Net.WebClient();
Something = WC.DownloadString(txtSomeAdress.Text);
txtResult.Text = Something
So, what is problem. If some page is redirecting to another page, than I got
HTML of this new page and it is ok. But I need url of this new page. How to
get it with C# or VB?
Thanks
String Something = "";
System.Net.WebClient WC = new System.Net.WebClient();
Something = WC.DownloadString(txtSomeAdress.Text);
txtResult.Text = Something
So, what is problem. If some page is redirecting to another page, than I got
HTML of this new page and it is ok. But I need url of this new page. How to
get it with C# or VB?
Thanks