Get URL without QueryString in ASP.NET
12/04/2010 Leave a comment
Is there an easy way to get the url part without the query string of a given Url?
Yeap .
string sample = Request.Url.GetLeftPart(UriPartial.Path);
Or long way:
string stringUri = “https://blog.bugrapostaci.com/test.aspx?lang=en”;
Uri uri = new Uri(stringUri);
string query = uri.Query;
string url = stringUri.Substring(0, stringUri.Length – query.Length);
happy tips.bye.