vote up 4 vote down star
3

Hi,

I am wondering what the best way to obtain the current domain is in ASP.NET?

For instance:

http://www.domainname.com/subdir/ should yield http://www.domainname.com http://www.sub.domainname.com/subdir/ should yield http://sub.domainname.com

As a guide, I should be able to add a url like "/Folder/Content/filename.html" (say as generated by Url.RouteUrl() in ASP.NET MVC) straight onto the URL and it should work.

flag

Note that the "current domain" here is actually what the consuming user-agent used to get to your site, which in many cases is different from your site's "official URL" as well as what the end user may have entered into their browser (reverse proxy, forward proxy, internal hostname, IP address, ...). – bzlm Apr 29 at 16:06
So is there a way to get the "official URL" (the one from IIS?) – Graphain May 1 at 3:02

3 Answers

vote up 10 vote down check

As per this link a good starting point is:

Request.Url.Scheme + System.Uri.SchemeDelimiter + Request.Url.Host

However, if the domain is http://www.domainname.com:500 this will fail.

The following resolves this:

Request.Url.Scheme + System.Uri.SchemeDelimiter + Request.Url.Host + (Request.Url.Port != 80 ? ":" + Request.Url.Port : "")

However, I get the feeling that assuming port 80 may be browser or even user configuration dependant.

link|flag
Why assume port 80 here? If you remove that assumption, the code looks like a catch-all. When you assume port 80, you will fail in many scenarios (see comments on other anwers). If you want to remove the port number if possible, you must check that the port number is the default for the scheme in question, and that the scheme supports default port numbers. – bzlm Apr 29 at 16:03
Yeah see the note that port 80 may be a bad idea. I don't know any other way around this though which is why I mentioned it will need to be configuration dependant. – Graphain May 1 at 3:08
vote up -1 vote down

How about:

String domain = "http://" + Request.Url.Host
link|flag
Not bad, but what if your site has secure pages i.e. https:// What if your domain is not hosted on port 80? – Graphain Sep 15 '08 at 3:16
vote up -1 vote down

How about:

NameValueCollection variables = HttpContext.Current.Request.ServerVariables; string protocol = (variables["SERVER _ PORT _ SECURE"] == "1") ? "https://" : "http://"; string domain = variables["SERVER _ NAME"]; string port = variables["SERVER _ PORT"];

(Remove the spaces around the underscores in the server variable indexers.)

link|flag

Your Answer

Get an OpenID
or

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