Can anyone help out me in getting the URL of the current working page of ASP.NET in C#?

9 s
9

Try this :

string url = HttpContext.Current.Request.Url.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string path = HttpContext.Current.Request.Url.AbsolutePath;
// /TESTERS/Default6.aspx

string host = HttpContext.Current.Request.Url.Host;
// localhost

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *