Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
10answers
4k views

IP to Country?

Does anyone know of a simple way to retrieve the country for a given IP Address? Preferably in ISO_3166-1 format?
8
votes
4answers
4k views

How do you detect a website visitor's country (Specifically, US or not)?

I need to show different links for US and non-US visitors to my site. This is for convenience only, so I am not looking for a super-high degree of accuracy, and security or spoofing are not a ...
8
votes
4answers
4k views

free country, city database for sql server

have anyone used this before, i need free country, city, IP database for sqlserver
7
votes
2answers
1k views

How to get ISO Country code in android applications?

I am a new developer on android application. I would like to get the ISO Country code when I pass the mobile number with country code. If I pass the mobile number as 1-319-491-6338, can I get country ...
6
votes
4answers
109 views

What is the best way to deal with address inputs that can be from multiple countries?

Most of my websites in the past have been rather limited to the United States when it came to displaying addresses. On a project I'm working on right now, however, users can add events from all over ...
6
votes
7answers
1k views

Source of data for “official” country/region list

Lately we've started getting issues with outdated countries / regions list being presented to users of our web-application. We currently have a few DB tables to store localized country names along ...
4
votes
5answers
369 views

Get a country's continent in C#

Is there a way to find a country's continent in C#, using the RegionInfo class or any other way? For example, you give the country name "Denmark" and it returns "Europe".
4
votes
4answers
587 views

PHP: What's the best solution to check a users country?

I'm really new in this, so please could you tell me how this is works, and what's the best way to do it? Services that give API's I read/heard that there are a lots of services that gives API's to ...
4
votes
8answers
2k views

Website language: use browser locale or IP address

For a website we're about to implement automatic country/language selection, but still giving the user the choice to change it. First of all, if the user enters the website using a domain with a ...
3
votes
5answers
3k views

Is there a way to get a timeZone with (only) a country code (valid ISO-3166 code)?

I'm trying to get a TimeZone for a user. For this I have a country code which is a valid ISO Country Code. These codes are the upper-case, two-letter codes as defined by ISO-3166. You can find a full ...
2
votes
1answer
146 views

How do I pull the Country field out of an ABAddressBookRef?

I'm having trouble understanding how to access the properties of an address in a an ABAddressBookRef. I've done it okay with telephone numbers: ABMultiValueRef phoneNumberProperty = ...
2
votes
4answers
3k views

multilanguage app: best way?

Which is the best way to have a multilanguage app? Should I create a set of strings written in my language and then use an google api that translates online on-the-fly? Any code example? And, how to ...
2
votes
1answer
1k views

Official list of countries for iPhone AppStore and In-App Purchase?

I am looking for an OFFICIAL list of countries where : 1 - users can download free applications using the AppStore? 2 - users can download paid applications using the AppStore? 3 - users can use ...
2
votes
3answers
1k views

.Net - CultureInfo: How to get country name

I used the code below to get the list of culture type, is their a way on how to get just the country name? Thank you static void Main(string[] args) { StringBuilder sb = new ...
2
votes
1answer
232 views

How to get current country name on Windows 95, NT 3.51

I want to get current country code for oldest Windows systems. I was using GetLocaleInfo() with LOCALE_ICOUNTRY flag, but then I've realized it returns wrong results (the same values for different ...
2
votes
1answer
254 views

how can I filter on the second element in a tuple of tuples?

In my model I have a field: country = models.CharField(_('Country'), max_length=2, choices=COUNTRIES) Where COUNTRIES is a tuple of tuples like this: COUNTRIES = ( ('AF', _('Afghanistan')), ...
2
votes
3answers
210 views

Where to find reference about IP range of China?

Is there any document that's accurate about this?
2
votes
4answers
119 views

Metasyntactic variables: do you use something else than “foo”, “bar” according to your mother tongue

In english, the variables foo and bar are very often used for simple examples, or for anonymous variables (see these three posts for more on these metasyntactic variables (1), (2), (3)) Usually, I ...
1
vote
1answer
52 views

User current country - based on current location of the user

I would like to check in which country the user is - I have tried a few ways but none give the requested result. My main goal is when the app launches check in which country the user is and based on ...
1
vote
3answers
62 views

How to store countries and counties list in Umbraco?

We want to store list of countries and thier counties/states for our latest Umbraco project. These country and county ids are required in other modules for filtering and searching. We are not using ...
1
vote
1answer
61 views

Mark country boundaries - iPad (With or Without MapKit)

I would like to color (fill and/or stroke) a country boundaries (boarders), say you have a world map and the user picked Italy, the boarders of italy will be stroked and the area of Italy will be ...
1
vote
1answer
168 views

Country autocomplete textfield in JSF2 (Primefaces Component Lib) implementation

What is the best way to implement a country autocomplete textfield in JSF2? I would like to know if there are better ways than implementing a bean to inject a list of countries either from the ...
1
vote
2answers
294 views

asp.net mvc 3 - MVC 3 Razor: Country selection drop down list

My controller action code: ViewBag.country = from p in CultureInfo.GetCultures(CultureTypes.AllCultures & ~CultureTypes.NeutralCultures) select new SelectListItem ...
1
vote
0answers
37 views

How can i determine visitors from coming Turkey or not - asp.net 4.0 - iis 7.5 - c# [closed]

Possible Duplicate: How to get City, Country, and Country Code for a particular IP Address in ASP.NET? How can i determine visitors from coming Turkey or not - asp.net 4.0 - iis 7.5 - c# ...
1
vote
3answers
339 views

Extracting Country name (or initials) from Magento

I'm trying to get the country name "United States" (or initials "USA"/"US"). I've tried a bunch of variations on the following: echo ...
1
vote
2answers
71 views

character encoding is lost when processing a .txt file of country names with with PHP

I am processing a text file of country names from ISO-3166 to extract just the country names into an array. The problem is when I output the array, the special characters for some countries is lost or ...
1
vote
2answers
81 views

Where can I find a database of main U.S cities? [closed]

I'm looking for a database containing the main cities in the U.S categorized be states.
1
vote
1answer
137 views

Designing database schema for models with multiple sorts of data

This question is about database design and how to best split your entities when they serve more than one purpose. My database schema models sports events around the world. What type of event and ...
1
vote
1answer
84 views

phone number prefix

Hey, how would I take a phone number like: 15556667777 and some how get its country code (prefix, the 1).. But, the issue is.. I will have to be able to get ANY numbers country prefix from any phone ...
1
vote
1answer
385 views

How to identify each visitors country/location using php?

Hai friends I need user country when they visit my php website. According to his country I have to do some checking when they upload some bulk informations. How can I find the visitor country using ...
1
vote
2answers
66 views

how to effectively keep/update postal and telephone code format for each country?

currently we have a table for regex format for phone and postal code for countries that we use to validate when the user register through our forms. but the problem remains on the maintenance on the ...
1
vote
2answers
67 views

package for detecting users contry in php?

I want to know what is the best package to detect country which user is visiting from? I am using php/mysql..
1
vote
2answers
1k views

Django - Country -> State-> City Dropdown list

URGET!!!! Hello Every one. I am new to Django framework. I have been trying to create a 3 column drop-down list as Country, State, City. The list of state will be shown based on which country is ...
1
vote
2answers
208 views

Determining information about a phone number and reformatting in PHP

I'm looking for a way of determining whether a phone number is in the international format or a local format, and if it's in the international format what country it belongs to. If it's in the local ...
1
vote
1answer
185 views

GeoIP nearest (closest) country

Guys i have a little problem, i tried to find some examples on GeoIP based system that expands searches based on nearest neighbor countries. For example the visitor is from UK and tries to find IPs ...
1
vote
2answers
316 views

how to get country name and/or code by IP address?

Sorry for so noobish question but how can I do it with C++? I need to get country names and their 2-letter or 3-letter ISO codes (or whatever it's called) using a given IP address. Is there any way to ...
1
vote
7answers
4k views

Django: Country drop down list?

I have a form for address information. One of the fields is for the address country. Currently this is just a textbox. I would like a drop down list (of ISO 3166 countries) for this. I'm a django ...
1
vote
0answers
393 views

Map with political borders similar to google charts, “clickable” countries

I'd like to add a map of countries to my website where the user can choose a specific country by clicking on it. http://code.google.com/apis/chart/docs/gallery/map_charts.html has the looks i want, ...
1
vote
1answer
2k views

How to get user's country information

Basically I need to identify the user's country at application startup and enable or disable a location based feature in my app based on his/her country. I need to do this as quickly as possible in ...
1
vote
1answer
754 views

Where to find great proxy servers for testing GeoIP services?

We would like to test a GeoIP-Service. Therefore we need to go to the site with an IP from another country. There are a lot of free proxy lists like http://nntime.com/proxy-country/ The problem with ...
1
vote
1answer
173 views

Where can I get up to date country list?

I need to get list of valid countries for web application, is there any list that could be downloaded as XML or similar format, so that I could atomatically update country list?
1
vote
3answers
766 views

How to get user region/country information in web-applicaiton?

My main purpose is to show different page to different country(language) people. I think it should be based on the user region/country, which I guess can fetch out from ip address? example: *For EN ...
1
vote
3answers
449 views

Country Codes to Country Names conversion

I'm building the registration part of a mobile site and I need to retrieve the country name from the country code of a mobile phone number (eg. +1 corresponds to United States). Is there any ...
1
vote
2answers
1k views

How to create Country-->State/Province--->Zip Code drop down using geonames webservice + asp.net

I'm planning to create a cascading dropdown list of Country--> State/Province--->Zip code using geonames. Do you have any good web service or examples? Your reply is greatly appreciated, Best
0
votes
1answer
26 views

Ban IP by country via .htaccess but allow certain IPs from that country

.htaccess files so please bear with me. I would just like to know if there is any way I can ban all IP from a specific country but only allow perhaps one or two IPs from the banned country access to ...
0
votes
2answers
42 views

ASP.NET Create a specific culture with language code nb (Bokmål)

I have an ASP.NET 3.5 website. Why can't I create a specific culture for the language Bokmal like this: CultureInfo c = CultureInfo.CreateSpecificCulture("nb"); Language "en" works fine, it ...
0
votes
1answer
47 views

Map User, Address, Country with DDD

I'm trying to create an ecommerce website using spring, hibernate and for the first time following DDD. At the moment the situation is this. I'm considering the object USER as aggregate root which ...
0
votes
1answer
113 views

Getting Current City's Country from Facebook Graph API

FB graph api seems to always return "city, state" for USA fields of "current city" and "hometown", but seems to always return "city, country" for anything outside of the USA. Is this a reliable ...
0
votes
2answers
64 views

Android run different functions depend on country

I want to run different functions to my app depending of the country of the user For example if Country is US then do this if country is UK then do this ....could someone help me? Thank you in ...
0
votes
2answers
236 views

How web page automatically identify country?

I am working in ASP.net and C# . Currently i am designing a signup page for my web application. On that page there is a field "Country", user can specify his country using drop-down list. Now i want ...

1 2