UI Design - design pattern for city/country drop down? (ASP.NET MVC)

Posted by JK on Stack Overflow See other posts from Stack Overflow or by JK
Published on 2010-06-09T04:46:18Z Indexed on 2010/06/09 4:52 UTC
Read the original article Hit count: 135

Filed under:
|
|
|

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?

© Stack Overflow or respective owner

Related posts about c#

Related posts about asp.net-mvc