get current page URL in MVC 5

How to get current page URL in MVC 5

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.


protected override void OnAuthorization(AuthorizationContext filterContext)
{
      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"
         
  }



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^