Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an ASP.Net page that will be hosted on a couple different servers, and I want to get the URL of the page (or even better: the site where the page is hosted) as a string for use in the code-behind. Any ideas?

share|improve this question
See this solution: stackoverflow.com/questions/567590/… – Kimball Robinson Sep 4 '10 at 0:34
1  
possible duplicate of How to get the URL of the current page in C# – hims056 Sep 18 '12 at 4:26

10 Answers

up vote 109 down vote accepted

Use this:

Request.Url.AbsoluteUri

That will get you the full path (including http://...)

share|improve this answer
1  
Remember, this will also include the query part (?key=value....) – Marcel Aug 16 '12 at 14:25
1  
This doesn't work if the application is not hosted on the server root but in a directory. If the application is hosted on www.contoso.com/app/ this will return just www.contoso.com – linkerro Oct 3 '12 at 8:58

Late answer but incase anyone else finds this post it may be useful.

If you want only the scheme and authority part of the request (protocol, host and port) use

Request.Url.GetLeftPart(UriPartial.Authority)

This will give you what Jared's sample code will give you, in one line :)

share|improve this answer
Not having this line of code has bugged me for years... Thanks! – Christopher Edwards Jun 9 '10 at 14:05
1  
An even better solution is posted at stackoverflow.com/questions/567590/… – Kimball Robinson Sep 4 '10 at 0:33
10  
@Kimball I'm not sure concatenating strings together is a better solution. – WDuffy Mar 27 '11 at 11:10

I am using

Request.Url.GetLeftPart(UriPartial.Authority) +
        VirtualPathUtility.ToAbsolute("~/")
share|improve this answer

Do you want the server name? Or the host name?

Request.Url.Host ala Stephen

Dns.GetHostName - Server name

Request.Url will have access to most everything you'll need to know about the page being requested.

share|improve this answer

Request.Url.Host

share|improve this answer
Request.Url.GetLeftPart(UriPartial.Authority) + Request.FilePath + "?theme=blue";

that will give you the full path to the page you are sitting on. I added in the querystring.

share|improve this answer

I'm facing same problem and so far I found:

new Uri(Request.Url,Request.ApplicationPath)

or

Request.Url.GetLeftPart(UriPartial.Authority)+Request.ApplicationPath
share|improve this answer

Using a js file you can capture the following, that can be used in the codebehind as well:

<script type="text/javascript">
    alert('Server: ' + window.location.hostname);
    alert('Full path: ' + window.location.href);
    alert('Virtual path: ' + window.location.pathname);
    alert('HTTP path: ' + 
        window.location.href.replace(window.location.pathname, ''));    
</script>
share|improve this answer

If you want to include any unique string on the end, similar to example.com?id=99999, then use the following

Dim rawUrl As String = Request.RawUrl.ToString()
share|improve this answer

I use this in my code in a custom class. Comes in handing for sending out emails like no-reply@example.com "no-reply@" + BaseSiteUrl Works fine on any site.

// get a sites base urll ex: example.com
public static string BaseSiteUrl
{
    get
    {
        HttpContext context = HttpContext.Current;
        string baseUrl = context.Request.Url.Authority + context.Request.ApplicationPath.TrimEnd('/');
        return baseUrl;
    }

}

If you want to use it in codebehind get rid of context.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.