vote up 1 vote down star

How to get to know DNS name of the server where ASP.NET application is run?

I want to get string "www.somehost.com" if my application URL is http://www.somehost.com/somepath/application.aspx

Is there some property of Server, Contex, Session or Request objects for this?

Thanks!

flag

The Domain Name, or the Domain Name Server? – Corey Trager Nov 13 '08 at 12:42
Or indeed the IP address? – Winston Smith Nov 13 '08 at 12:58
Are you trying to find the domain/host part of the URL used by the web user? Or the machine name of the server running the ASP.NET application? They're not necessarily the same. Given you're considering the Request object, I suspect you're after the host part of the URL? – Paul Nov 13 '08 at 13:12

3 Answers

vote up 3 vote down check

This will get you the DNS IP for the server that is hosting the web site

void GetDNSServerAddress()
    {
        NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces();
            foreach (NetworkInterface ni in nics)
        	{
        		if (ni.OperationalStatus == OperationalStatus.Up)
        		{
        			IPAddressCollection ips = ni.GetIPProperties().DnsAddresses;

        			foreach (System.Net.IPAddress ip in ips)
        			{
        				Console.Write(ip.ToString());
        			}
        		}
        	}
    }

However, while writing this ive just seen your edited post, so i think this is what you are after is simply:

string host = Request.Url.Scheme + "://" + Request.Url.Host;

Hope this helps!

link|flag
vote up 0 vote down

You can also get the 'machine name' using

System.Environment.MachineName
link|flag
No, it's for NetBIOS name. – Alexander Prokofyev Nov 14 '08 at 5:19
vote up 0 vote down

The HTTP_HOST server variable can give you what you need.

Request.ServerVariables("HTTP_HOST")
link|flag
That[s the host from the http headers. If there's a reverse-proxy or something in front of the ASP.NET application server, it's probably not the name of the machine that's running the ASP.NET application – Paul Nov 13 '08 at 13:10

Your Answer

Get an OpenID
or

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