I have an ASP.NET website written in C#.
On this site I need to automatically show a start page based on the user's location.
Can I get name of user's city based on the IP address of the user ?
|
|
|
You need an IP-address-based reverse geocoding API... like the one from hostip.info. I'm sure there are plenty of options available. You may want to allow the user to override this, however. For example, they could be on a corporate VPN which makes the IP address look like it's in a different country. |
|||
|
|
|
IPInfoDB has an API that you can call in order to find a location based on an IP address. For "City Precision", you call it like this (you'll need to register to get a free API key):
Here's an example in both VB and C# that shows how to call the API. |
||||
|
|
|
You'll probably have to use an external API, most of which cost money. I did find this though, seems to be free: http://api.hostip.info/ |
|||
|
|
|
What you need is called a "geo-IP database". Most of them cost some money (albeit not too expensive), especially fairly precise ones. One of the most widely used is MaxMind's database. They have a fairly good free version of IP-to-city database called GeoLity City - it has lots of restrictions, but if you can cope with that that would be probably your best choice, unless you have some money to spare for a subscription to more accurate product. And, yeah, they do have a C# API to query geo-IP databases available. |
|||
|
|
Return country
Usage:
Return info
Usage:
|
||||
|
|
|
An Alternative to using an API is to use HTML 5 location Navigator to query the browser about the User location. I was looking for a similar approach as in the subject question but I found that HTML 5 Navigator works better and cheaper for my situation. Please consider that your scinario might be different. To get the User position using Html5 is very easy:
Try it yourself on http://www.w3schools.com/html/html5_geolocation.asp |
|||
|
|