如何在文本框中获取当前 url(在网络浏览器中打开的 url)?
例如:
webBrowser1.Url=new Uri("http://stackoverflow.com");
我的浏览器打开了链接!
现在我想在文本框中获取 url (http://stackoverflow.com)
问候。
如何在文本框中获取当前 url(在网络浏览器中打开的 url)?
例如:
webBrowser1.Url=new Uri("http://stackoverflow.com");
我的浏览器打开了链接!
现在我想在文本框中获取 url (http://stackoverflow.com)
问候。
yourTextBox.Text = webBrowser1.Url.ToString();
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;