views:

118

answers:

2

are there any free web services out there that will detect the IP Address of the user accessing your site, and then give you information like zip code, and local?

I am using C# on VS2008.

+1  A: 

Request.ServerVariables["REMOTE_ADDR"] to get the IP?

I believe you can use http://www.ip2location.com/

voyager
Man I should have done better research on this before posting my question. I see someone already posted the same question as I did.Thanks anyways.
NoDinero
http://www.maxmind.com/app/ip-location would be a bit better in my opinion
RageZ
+1  A: 

If you want to store that database of IPs locally, you could use Maxmind, it has a C# API and a free IP->location database (and more accurate paid one).

Check this old SO thread for some web services.

Ben
Thanks ben. 12345
NoDinero