I am trying to fetch the IP address using this:-

    protected void Page_Load(object sender, EventArgs e)
    {
        string ClientIP;
        ClientIP = HttpContext.Current.Request.UserHostAddress;
        Label1.Text = ClientIP;
    }

This code outputs 127.0.0.1.

And the code below displays nothing!

    string ClientIP;
    ClientIP = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
    Label1.Text = ClientIP;

How do I fetch the IP address? The REAL IP address of a user?

[EDIT]

I don't want EXACT location BTW. I need to know the country and then redirect the user to a webpage accordingly.

link|improve this question

2  
Keep in mind that NAT, proxies and so forth will obscure the results. – Brian Rasmussen Sep 10 '10 at 8:45
yep I know..just need to know the country – Serenity Sep 10 '10 at 8:48
2  
I've had a proxy in the hosting centre that prevented getting the user-IP, so then you won't even get country data. – Hans Kesting Sep 10 '10 at 8:53
1  
If you want to display a page in the "correct language", then country is not enough - there are multilingual countries (or foreigners living there). Checking UserLanguages is then better. – Hans Kesting Sep 10 '10 at 8:55
ok..thnx..will just try this – Serenity Sep 10 '10 at 9:22
show 1 more comment
feedback

2 Answers

up vote 2 down vote accepted
Request.Params["REMOTE_ADDR"]
link|improve this answer
this too is displaying 127.0.0.1 as output – Serenity Sep 10 '10 at 8:45
4  
@happysoul perhaps because you are testing on localhost ? – driis Sep 10 '10 at 8:46
feedback

Using System.Net, try this -

// Then using host name, get the IP address list..
          IPHostEntry ipEntry = DNS.GetHostByName (strHostName);
          IPAddress [] addr = ipEntry.AddressList;

          for (int i = 0; i < addr.Length; i++)
          {
              Console.WriteLine ("IP Address {0}: {1} ", i, addr[i].ToString ());
          }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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