I would like to take the original URL, truncate the query string parameters, and return a cleaned up version of the URL. I would like it to occur across the whole applicatio
Here is a simple trick
Dim uri = New Uri(Request.Url.AbsoluteUri) dim reqURL = uri.GetLeftPart(UriPartial.Path)