Tech Junkie Blog - Real World Tutorials, Happy Coding!: ASP.NET Get The Current Page File Name

Sunday, June 19, 2016

ASP.NET Get The Current Page File Name

In this blog we will get the current page file name that the user is currently on.

string[] currentUrl = HttpContext.Current.Request.Url.AbsolutePath.Split('/');
string pageFileName = currentUrl[currentUrl.Length-1];

1 comment:

Search This Blog