devxlogo

Get the Name of the Executing ASP.NET Page

Get the Name of the Executing ASP.NET Page

You can use the following server-side code to get the name of the currently executing ASP.NET page (e.g. default.aspx, hello.aspx).

string sPagePath = System.Web.HttpContext.Current.Request.Url.AbsolutePath;    System.IO.FileInfo oFileInfo = new System.IO.FileInfo(sPagePath);    string sPageName = oInfo.Name;
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist