vote up 0 vote down star

How write code in ASP to get website visitors IP address and Country ID ?

Plz help me, Alex

flag

42% accept rate
Retagged and removed javascript and java. – o.k.w Oct 24 at 9:34
this has nothing to do with ASP either - it's language agnostic really – annakata Oct 24 at 9:35
@annakata: Erm, he wanted the solution in ASP, the answered posts also contain how to ge IP Address from ASP. So, well... – o.k.w Oct 24 at 9:59
Please get in the habit of accepting the best answer provided, the one solving your problem. A "10% accept rate" on your user badge is really bad for your reputation. It's the right and polite thing to do on StackOverflow. See: meta.stackoverflow.com/questions/5234/… – marc_s Oct 24 at 10:52

5 Answers

vote up 0 vote down

You need a geolocation service or a similar lookup.

Eg: http://www.ip2location.com/developers.aspx

link|flag
vote up 0 vote down

Typically solutions like GeoIP are used to locate an IP address down to a geographical location.

link|flag
vote up 0 vote down

First you need the IP, this is reported by your server software. Read the REMOTE_ADDR server header with: Request.ServerVariables(REMOTE_ADDR)

For the country, a popular tool is GeoIP, there are some ASP implementations. Google for GeoIP ASP and you will find a solution.

link|flag
I try like this <% ip_address = Request.ServerVariables("HTTP_X_FORWARDED_FOR") if ip_address = "" then ip_address = Request.ServerVariables("REMOTE_ADDR") end if response.write ip_address %> The result is display like this "::1". This not display the complete IP – Alex Oct 24 at 9:52
@Alex: Why do you query for HTTP_X_FORWARDED_FOR? – o.k.w Oct 24 at 10:00
The reason we look for the HTTP_X_FORWARDED_FOR value 1st is because of proxy servers and things of that nature as many users are behind one. If that value is not there we just grab the REMOTE_ADDR. Even by doing this there are going to be times when we do not get an IP Address or what we get is not accurate. – Alex Oct 24 at 10:08
Yea, there is the proxy problem I didn't think about. Alex comment is right. – Nicolas Goy Oct 24 at 10:45
vote up 1 vote down

first, this has nothing to do with javascript. second, ip address is usually within the request headers, now you tagged this under java and asp where both provides different ways to retrieve the ip address info (with asp is the REMOTE_ADDR variable).

Once you have the IP address you can perform a lookup query in IP2Country table which are available for free on the net.

You simply should download the csv file and add it to your database

start here: http://software77.net/geo-ip/

link|flag
vote up 3 vote down

MaxMind provides a high-quality database of ip-country mapping.

link|flag
Also using this on my page. It's awesome! +1 – Shaharyar Oct 24 at 10:16

Your Answer

Get an OpenID
or

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