HttpContext.Current.Request.Url.Scheme + "://" + HttpContext.Current.Request.Url.Authority + HttpRuntime.AppDomainAppVirtualPath
webBrowser1.Navigating +=new WebBrowserNavigatingEventHandler(webBrowser1_Navigating); } private void webBrowser1_Navigating(object sender, WebBrowserNavigatingEventArgs e) { textbox1.Text = e.Url.ToString(); //instead of textbox1.text you may use your instance }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)