anyone have have a dropdownlist helper method with a list of US states? thanks.

link|improve this question

2  
I love Stack Overflow. Just gotta say it. – Robert S. Jun 17 '11 at 20:14
feedback

6 Answers

up vote 48 down vote accepted

As promised ... toss this in your "Global" namespace (or wherever else you want).

public class UnitedStatesStates
{
    public static readonly IDictionary<string, string> StateDictionary = new Dictionary<string, string> {
        {"ALABAMA", "AL"},
        {"ALASKA", "AK"},
        {"AMERICAN SAMOA", "AS"},
        {"ARIZONA ", "AZ"},
        {"ARKANSAS", "AR"},
        {"CALIFORNIA ", "CA"},
        {"COLORADO ", "CO"},
        {"CONNECTICUT", "CT"},
        {"DELAWARE", "DE"},
        {"DISTRICT OF COLUMBIA", "DC"},
        {"FEDERATED STATES OF MICRONESIA", "FM"},
        {"FLORIDA", "FL"},
        {"GEORGIA", "GA"},
        {"GUAM ", "GU"},
        {"HAWAII", "HI"},
        {"IDAHO", "ID"},
        {"ILLINOIS", "IL"},
        {"INDIANA", "IN"},
        {"IOWA", "IA"},
        {"KANSAS", "KS"},
        {"KENTUCKY", "KY"},
        {"LOUISIANA", "LA"},
        {"MAINE", "ME"},
        {"MARSHALL ISLANDS", "MH"},
        {"MARYLAND", "MD"},
        {"MASSACHUSETTS", "MA"},
        {"MICHIGAN", "MI"},
        {"MINNESOTA", "MN"},
        {"MISSISSIPPI", "MS"},
        {"MISSOURI", "MO"},
        {"MONTANA", "MT"},
        {"NEBRASKA", "NE"},
        {"NEVADA", "NV"},
        {"NEW HAMPSHIRE", "NH"},
        {"NEW JERSEY", "NJ"},
        {"NEW MEXICO", "NM"},
        {"NEW YORK", "NY"},
        {"NORTH CAROLINA", "NC"},
        {"NORTH DAKOTA", "ND"},
        {"NORTHERN MARIANA ISLANDS", "MP"},
        {"OHIO", "OH"},
        {"OKLAHOMA", "OK"},
        {"OREGON", "OR"},
        {"PALAU", "PW"},
        {"PENNSYLVANIA", "PA"},
        {"PUERTO RICO", "PR"},
        {"RHODE ISLAND", "RI"},
        {"SOUTH CAROLINA", "SC"},
        {"SOUTH DAKOTA", "SD"},
        {"TENNESSEE", "TN"},
        {"TEXAS", "TX"},
        {"UTAH", "UT"},
        {"VERMONT", "VT"},
        {"VIRGIN ISLANDS", "VI"},
        {"VIRGINIA", "VA"},
        {"WASHINGTON", "WA"},
        {"WEST VIRGINIA", "WV"},
        {"WISCONSIN", "WI"},
        {"WYOMING", "WY"}
    };

    public static SelectList StateSelectList
    {
        get { return new SelectList(StateDictionary, "Value", "Key"); }
    }
}

and use it like this:

<%= Html.DropDownList("state", UnitedStatesStates.StateSelectList)%>
link|improve this answer
Sweet. Thanks Kyle. Saved me some work. I love this site. – Rake36 Aug 4 '09 at 19:05
1  
This helped me understand how to set name/value (or key/value) pairs for the View's select tag. thanks! – robnardo Aug 18 '09 at 15:24
What exactly do you mean by 'Global' namespace? Any what are best practices here regarding MVC and accessing from views? – UpTheCreek Oct 7 '09 at 9:04
I just have a "MyApp.Global" namespace that I put stuff like this in. You can put it where ever you like. – Kyle West Oct 9 '09 at 21:43
8  
Why does it SHOUT the state names? – Josh Stodola Jan 31 '10 at 6:00
show 2 more comments
feedback

The all-caps names bothered me, so I changed them to lowercase. To maybe save somebody else the trouble (credit still goes to @Kyle West):

public class UnitedStatesStates
{
    public static readonly IDictionary<string, string> StateDictionary = new Dictionary<string, string> {
        {"Alabama", "AL"},
        {"Alaska", "AK"},
        {"American Samoa", "AS"},
        {"Arizona", "AZ"},
        {"Arkansas", "AR"},
        {"California", "CA"},
        {"Colorado", "CO"},
        {"Connecticut", "CT"},
        {"Delaware", "DE"},
        {"District of Columbia", "DC"},
        {"Federated States of Micronesia", "FM"},
        {"Florida", "FL"},
        {"Georgia", "GA"},
        {"Guam", "GU"},
        {"Hawaii", "HI"},
        {"Idaho", "ID"},
        {"Illinois", "IL"},
        {"Indiana", "IN"},
        {"Iowa", "IA"},
        {"Kansas", "KS"},
        {"Kentucky", "KY"},
        {"Louisiana", "LA"},
        {"Maine", "ME"},
        {"Marshall Islands", "MH"},
        {"Maryland", "MD"},
        {"Massachusetts", "MA"},
        {"Michigan", "MI"},
        {"Minnesota", "MN"},
        {"Mississippi", "MS"},
        {"Missouri", "MO"},
        {"Montana", "MT"},
        {"Nebraska", "NE"},
        {"Nevada", "NV"},
        {"New Hampshire", "NH"},
        {"New Jersey", "NJ"},
        {"New Mexico", "NM"},
        {"New York", "NY"},
        {"North Carolina", "NC"},
        {"North Dakota", "ND"},
        {"Northern Mariana Islands", "MP"},
        {"Ohio", "OH"},
        {"Oklahoma", "OK"},
        {"Oregon", "OR"},
        {"Palau", "PW"},
        {"Pennsylvania", "PA"},
        {"Puerto Rico", "PR"},
        {"Rhode Island", "RI"},
        {"South Carolina", "SC"},
        {"South Dakota", "SD"},
        {"Tennessee", "TN"},
        {"Texas", "TX"},
        {"Utah", "UT"},
        {"Vermont", "VT"},
        {"Virgin Islands", "VI"},
        {"Virginia", "VA"},
        {"Washington", "WA"},
        {"West Virginia", "WV"},
        {"Wisconsin", "WI"},
        {"Wyoming", "WY"}
    };

    public static SelectList StateSelectList
    {
        get { return new SelectList(StateDictionary, "Value", "Key"); }
    }
}
link|improve this answer
3  
+1 for converting this into proper case – geek May 5 '11 at 12:49
feedback

I know this is an old question, but since it just popped up on the SO radar again, I thought I'd offer my own copy/paste class that I've been using lately, complete with not only US states, but Canadian provinces and a global country list.

public class GeoNames
{
    public static string[] Countries = new string[] 
    {
        "Afghanistan",
        "Albania",
        "Algeria",
        "Andorra",
        "Angola",
        "Antigua & Deps",
        "Argentina",
        "Armenia",
        "Australia",
        "Austria",
        "Azerbaijan",
        "Bahamas",
        "Bahrain",
        "Bangladesh",
        "Barbados",
        "Belarus",
        "Belgium",
        "Belize",
        "Benin",
        "Bhutan",
        "Bolivia",
        "Bosnia Herzegovina",
        "Botswana",
        "Brazil",
        "Brunei",
        "Bulgaria",
        "Burkina",
        "Burundi",
        "Cambodia",
        "Cameroon",
        "Canada",
        "Cape Verde",
        "Central African Rep",
        "Chad",
        "Chile",
        "China",
        "Colombia",
        "Comoros",
        "Congo",
        "Congo {Democratic Rep}",
        "Costa Rica",
        "Croatia",
        "Cuba",
        "Cyprus",
        "Czech Republic",
        "Denmark",
        "Djibouti",
        "Dominica",
        "Dominican Republic",
        "East Timor",
        "Ecuador",
        "Egypt",
        "El Salvador",
        "Equatorial Guinea",
        "Eritrea",
        "Estonia",
        "Ethiopia",
        "Fiji",
        "Finland",
        "France",
        "Gabon",
        "Gambia",
        "Georgia",
        "Germany",
        "Ghana",
        "Greece",
        "Grenada",
        "Guatemala",
        "Guinea",
        "Guinea-Bissau",
        "Guyana",
        "Haiti",
        "Honduras",
        "Hungary",
        "Iceland",
        "India",
        "Indonesia",
        "Iran",
        "Iraq",
        "Ireland {Republic}",
        "Israel",
        "Italy",
        "Ivory Coast",
        "Jamaica",
        "Japan",
        "Jordan",
        "Kazakhstan",
        "Kenya",
        "Kiribati",
        "Korea North",
        "Korea South",
        "Kosovo",
        "Kuwait",
        "Kyrgyzstan",
        "Laos",
        "Latvia",
        "Lebanon",
        "Lesotho",
        "Liberia",
        "Libya",
        "Liechtenstein",
        "Lithuania",
        "Luxembourg",
        "Macedonia",
        "Madagascar",
        "Malawi",
        "Malaysia",
        "Maldives",
        "Mali",
        "Malta",
        "Marshall Islands",
        "Mauritania",
        "Mauritius",
        "Mexico",
        "Micronesia",
        "Moldova",
        "Monaco",
        "Mongolia",
        "Montenegro",
        "Morocco",
        "Mozambique",
        "Myanmar, {Burma}",
        "Namibia",
        "Nauru",
        "Nepal",
        "Netherlands",
        "New Zealand",
        "Nicaragua",
        "Niger",
        "Nigeria",
        "Norway",
        "Oman",
        "Pakistan",
        "Palau",
        "Panama",
        "Papua New Guinea",
        "Paraguay",
        "Peru",
        "Philippines",
        "Poland",
        "Portugal",
        "Qatar",
        "Romania",
        "Russian Federation",
        "Rwanda",
        "Saint Vincent & the Grenadines",
        "Samoa",
        "San Marino",
        "Sao Tome & Principe",
        "Saudi Arabia",
        "Senegal",
        "Serbia",
        "Seychelles",
        "Sierra Leone",
        "Singapore",
        "Slovakia",
        "Slovenia",
        "Solomon Islands",
        "Somalia",
        "South Africa",
        "Spain",
        "Sri Lanka",
        "St Kitts & Nevis",
        "St Lucia",
        "Sudan",
        "Suriname",
        "Swaziland",
        "Sweden",
        "Switzerland",
        "Syria",
        "Taiwan",
        "Tajikistan",
        "Tanzania",
        "Thailand",
        "Togo",
        "Tonga",
        "Trinidad & Tobago",
        "Tunisia",
        "Turkey",
        "Turkmenistan",
        "Tuvalu",
        "Uganda",
        "Ukraine",
        "United Arab Emirates",
        "United Kingdom",
        "United States",
        "Uruguay",
        "Uzbekistan",
        "Vanuatu",
        "Vatican City",
        "Venezuela",
        "Vietnam",
        "Yemen",
        "Zambia",
        "Zimbabwe"
    };

    public static string[,] States = new string[,]
    {
        // ===== United States =====

        { "AL", "Alabama" },
        { "AK", "Alaska" },
        { "AZ", "Arizona" },
        { "AR", "Arkansas" },
        { "CA", "California" },
        { "CO", "Colorado" },
        { "CT", "Connecticut" },
        { "DE", "Delaware" },
        { "DC", "Washington D.C." },
        { "FL", "Florida" },
        { "GA", "Georgia" },
        { "HI", "Hawaii" },
        { "ID", "Idaho" },
        { "IL", "Illinois" },
        { "IN", "Indiana" },
        { "IA", "Iowa" },
        { "KS", "Kansas" },
        { "KY", "Kentucky" },
        { "LA", "Louisiana" },
        { "ME", "Maine" },
        { "MD", "Maryland" },
        { "MA", "Massachusetts" },
        { "MI", "Michigan" },
        { "MN", "Minnesota" },
        { "MS", "Mississippi" },
        { "MO", "Missouri" },
        { "MT", "Montana" },
        { "NE", "Nebraska" },
        { "NV", "Nevada" },
        { "NH", "New Hampshire" },
        { "NJ", "New Jersey" },
        { "NM", "New Mexico" },
        { "NY", "New York" },
        { "NC", "North Carolina" },
        { "ND", "North Dakota" },
        { "OH", "Ohio" },
        { "OK", "Oklahoma" },
        { "OR", "Oregon" },
        { "PA", "Pennsylvania" },
        { "RI", "Rhode Island" },
        { "SC", "South Carolina" },
        { "SD", "South Dakota" },
        { "TN", "Tennessee" },
        { "TX", "Texas" },
        { "UT", "Utah" },
        { "VT", "Vermont" },
        { "VA", "Virginia" },
        { "WA", "Washington" },
        { "WV", "West Virginia" },
        { "WI", "Wisconsin" },
        { "WY", "Wyoming" },

        // ===== Canada =====

        { "AB", "Alberta" },
        { "BC", "British Columbia" },
        { "MB", "Manitoba" },
        { "NB", "New Brunswick" },
        { "NL", "Newfoundland" },
        { "NT", "Northwest Territories" },
        { "NS", "Nova Scotia" },
        { "NU", "Nunavut" },
        { "ON", "Ontario" },
        { "PE", "Prince Edward Island" },
        { "QC", "Quebec" },
        { "SK", "Saskatchewan" },
        { "YT", "Yukon" }        
    };

}
link|improve this answer
feedback

I wrote a ASP.NET MVC based drop down list control that includes US States as well as all other countries. Hope this helps someone: http://www.schnieds.com/2010/01/aspnet-mvc-locale-user-control.html

link|improve this answer
feedback

I had different requirements and also was coding the models for my DropDownLists differently so I modified the code for my purposes (using IEnumerable). I thought it might be useful to someone. Props to @KyleWest for his original work that I slightly modified.

public class myData
{
    [Required(ErrorMessage = "Please select the state you live in")]
    [Display(Name = "State:")]
    public string State { get; set; }

    public IEnumerable<SelectListItem> StateList { get; set; }

    public myData()
    {
        var statelist = new List<SelectListItem>()
        {
            new SelectListItem { Text = "Please select" },
            new SelectListItem { Value = "AL", Text="Alabama" },
            new SelectListItem { Value = "AK", Text="Alaska" },
            //new SelectListItem { Value = "AS", Text="American Samoa" },
            new SelectListItem { Value = "AZ", Text="Arizona" },
            new SelectListItem { Value = "AR", Text="Arkansas" },
            new SelectListItem { Value = "CA", Text="California" },
            new SelectListItem { Value = "CO", Text="Colorado" },
            new SelectListItem { Value = "CT", Text="Connecticut" },
            new SelectListItem { Value = "DE", Text="Delaware" },
            new SelectListItem { Value = "DC", Text="District of Columbia" },
            //new SelectListItem { Value = "FM", Text="Federated States of Micronesia" },
            new SelectListItem { Value = "FL", Text="Florida" },
            new SelectListItem { Value = "GA", Text="Georgia" },
            new SelectListItem { Value = "GU", Text="Guam" },
            new SelectListItem { Value = "HI", Text="Hawaii" },
            new SelectListItem { Value = "ID", Text="Idaho" },
            new SelectListItem { Value = "IL", Text="Illinois" },
            new SelectListItem { Value = "IN", Text="Indiana" },
            new SelectListItem { Value = "IA", Text="Iowa" },
            new SelectListItem { Value = "KS", Text="Kansas" },
            new SelectListItem { Value = "KY", Text="Kentucky" },
            new SelectListItem { Value = "LA", Text="Louisiana" },
            new SelectListItem { Value = "ME", Text="Maine" },
            //new SelectListItem { Value = "MH", Text="Marshall Islands" },
            new SelectListItem { Value = "MD", Text="Maryland" },
            new SelectListItem { Value = "MA", Text="Massachusetts" },
            new SelectListItem { Value = "MI", Text="Michigan" },
            new SelectListItem { Value = "MN", Text="Minnesota" },
            new SelectListItem { Value = "MS", Text="Mississippi" },
            new SelectListItem { Value = "MO", Text="Missouri" },
            new SelectListItem { Value = "MT", Text="Montana" },
            new SelectListItem { Value = "NE", Text="Nebraska" },
            new SelectListItem { Value = "NV", Text="Nevada" },
            new SelectListItem { Value = "NH", Text="New Hampshire" },
            new SelectListItem { Value = "NJ", Text="New Jersey" },
            new SelectListItem { Value = "NM", Text="New Mexico" },
            new SelectListItem { Value = "NY", Text="New York" },
            new SelectListItem { Value = "NC", Text="North Carolina" },
            new SelectListItem { Value = "ND", Text="North Dakota" },
            //new SelectListItem { Value = "MP", Text="Northern Mariana Islands" },
            new SelectListItem { Value = "OH", Text="Ohio" },
            new SelectListItem { Value = "OK", Text="Oklahoma" },
            new SelectListItem { Value = "OR", Text="Oregon" },
            //new SelectListItem { Value = "PW", Text="Palau" },
            new SelectListItem { Value = "PA", Text="Pennsylvania" },
            new SelectListItem { Value = "PR", Text="Puerto Rico" },
            new SelectListItem { Value = "RI", Text="Rhode Island" },
            new SelectListItem { Value = "SC", Text="South Carolina" },
            new SelectListItem { Value = "SD", Text="South Dakota" },
            new SelectListItem { Value = "TN", Text="Tennessee" },
            new SelectListItem { Value = "TX", Text="Texas" },
            new SelectListItem { Value = "UT", Text="Utah" },
            new SelectListItem { Value = "VT", Text="Vermont" },
            //new SelectListItem { Value = "VI", Text="Virgin Islands" },
            new SelectListItem { Value = "VA", Text="Virginia" },
            new SelectListItem { Value = "WA", Text="Washington" },
            new SelectListItem { Value = "WV", Text="West Virginia" },
            new SelectListItem { Value = "WI", Text="Wisonsin" },
            new SelectListItem { Value = "WY", Text="Wyoming" }
        };
        this.StateList = statelist;
    }
}

A couple of notes:

  1. I use int in my other DropDownList model code instead of what I did here public string State { get; set; } because my Value was always an integer such as 1
  2. I commented out the territories (PR is a commonwealth :P, and DC is . . . well, a district).
  3. Part of the reason I converted this was to be able to use @Html.ValidationMessageFor - I was unable to figure out how to hook it up with the original code.

Finally, this is what I have in my View (sans the HTML markup):

@Html.LabelFor(m => m.State)
@Html.DropDownListFor(m => m.State,
    new SelectList(Model.StateList, "Value", "Text"))
<span class="required"></span>
@Html.ValidationMessageFor(m => m.State)

The <span> is just some CSS that displays a background-image

link|improve this answer
feedback

You can build this with an extension method pretty easily.

link|improve this answer
3  
Care to show us how? – UpTheCreek Oct 7 '09 at 8:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.