What is the best way to do a city/country dropdown pair in ASP.NET MVC?
I see lots of places with country above city, but that's unnatural: in real life we write city/country. I've used city, then country, but the problem is that the user then has to go backwards after changing the country.
The other problem is what do you do about cities/countries not in your list? If city/country are both drop downs, then the user cant type their own city if it is missing. But if you have a dropdown and a textbox, that makes it unwieldy (you end up with 4 controls to enter 2 pieces of data).
Are there any examples websites where the city/country dropdown pair are done in a very useable and clear manner?