2

如何在文本框中获取当前 url(在网络浏览器中打开的 url)?

例如:

webBrowser1.Url=new Uri("http://stackoverflow.com");

我的浏览器打开了链接!

现在我想在文本框中获取 url (http://stackoverflow.com)

问候。

4

2 回答 2

7
yourTextBox.Text = webBrowser1.Url.ToString();
于 2012-10-23T16:51:41.033 回答
1
Result : http://localhost:1302/TESTERS/Default6.aspx
string url = HttpContext.Current.Request.Url.AbsoluteUri;

result : /TESTERS/Default6.aspx
string path = HttpContext.Current.Request.Url.AbsolutePath;


result : localhost
string host = HttpContext.Current.Request.Url.Host;
于 2012-10-23T16:51:25.117 回答