asp vb get url code example
Example 1: c# get full URL of page
string absoluteurl = System.Web.HttpContext.Current.Request.Url.AbsoluteUri;
Example 2: get current url vb.net
Dim url As String = HttpContext.Current.Request.Url.AbsoluteUri
Dim path As String = HttpContext.Current.Request.Url.AbsolutePath
Dim host As String = HttpContext.Current.Request.Url.Host