vote up 1 vote down star
1

I want to implement this in ASP.NET. I don't have any idea about how to do so, unfortunately.

flag
1  
You can only get an approximate location, and it may be incorrect. – John Saunders Sep 11 at 5:21
I got rid of the spam link. – John Saunders Sep 11 at 5:23
Same. Sorry for the concurrent edit! Feel free to rollback over me. – JoshJordan Sep 11 at 5:24

5 Answers

vote up 3 vote down

Here how it is done in asp.net

Request.ServerVariables("REMOTE_ADDR")

Get a copy of IP adress database by location here

http://www.maxmind.com/

link|flag
+1 for Maxmind. Used it with great success. – Jakob Gade Sep 11 at 5:34
vote up 1 vote down

Why not use Google Analytics? You will get more than what you need. Alternatively you can get the client's ip and use service like ip2location to get the location.

Check this similar question as well. finding clients location in asp.net page.

link|flag
vote up 0 vote down

Get the client IP and find the location of IP using any IP to geo location Mapping service.

link|flag
vote up 0 vote down

by using

string userHost = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (String.IsNullOrEmpty(userHost) || 
    String.Compare(userHost, "unknown", true) == 0)
{
    userHost = Request.UserHostAddress;
}

you will get users ip address . Based on this ip address you can find out visitor location details by calling some webservice .

link|flag
vote up 0 vote down

IPAddressExtensions is a free codeplex class library if all you just want is the Country the IP is located from.

link|flag

Your Answer

Get an OpenID
or

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