Hi everyone, I am going to share the code sample for "how to Get Current Page URL in MVC 5" using "Authorization context" and "Http Context" Request.
Behalf of "Authorization Context" object "filterContext" we can find the Request URLs.
1. FilePath
2. AbsolutePath
3. RawUrl
4. AbsoluteUri
5. OriginalString
6. AppRelativeCurrentExecutionFilePath etc.
All the Above Current Page Request URLs as given below.
{
filterContext.HttpContext.Request.FilePath;
Output : "/Contract/Index"
filterContext.HttpContext.Request.Url.AbsolutePath;
Output : "/Contract/Index"
filterContext.HttpContext.Request.RawUrl;
Output : "/Contract/Index"
filterContext.HttpContext.Request.Url.AbsoluteUri;
Output : "http://localhost:37745/Contract/Index"
filterContext.HttpContext.Request.Url.OriginalString;
Output : "http://localhost:37745/Contract/Index"
filterContext.HttpContext.Request.AppRelativeCurrentExecutionFilePath;
Output : "~/Contract/Index"
}