"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Get the Current Page URL in ASP.NET C#?

How to Get the Current Page URL in ASP.NET C#?

Posted on 2025-02-22
Browse:596

How to Get the Current Page URL in ASP.NET C#?

Accessing the Current Page URL in ASP.NET C#

This guide demonstrates how to obtain the URL of the currently displayed page within an ASP.NET application using C#.

Scenario:

Often, ASP.NET C# developers need to retrieve the current page's URL for various tasks.

Method:

The HttpRequest object offers several properties to access different parts of the URL:

string fullUrl = HttpContext.Current.Request.Url.AbsoluteUri;
string pagePath = HttpContext.Current.Request.Url.AbsolutePath;
string serverHost = HttpContext.Current.Request.Url.Host;

Details:

  • AbsoluteUri: Returns the complete, absolute URL of the requested resource.
  • AbsolutePath: Provides the path portion of the URL, excluding the server's hostname.
  • Host: Specifies the hostname or IP address of the web server.

These properties allow you to extract specific URL components, offering flexibility in your code.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3