I'm new in ASP.NET MVC 2 and I'd like to write a very simple dropdown list which gives static options. For example I'd like to provide choices between "Red", "Blue", and "Green".

link|improve this question
Thank you for the correction. My English is a little weak :/ – Rinesse Jun 16 '10 at 23:57
feedback

3 Answers

up vote 18 down vote accepted

msdn: http://msdn.microsoft.com/en-us/library/ee703573.aspx

an example usage: http://stackoverflow.com/questions/1916462/dropdownlistfor-in-editortemplate-not-selecting-value

Let's say that you have the following Linq/POCO class:

public class Color
{
    public int ColorId { get; set; }
    public string Name { get; set; }
}

And let's say that you have the following model:

public class PageModel 
{
   public int MyColorId { get; set; }
}

And, finally, let's say that you have the following list of colors. They could come from a Linq query, from a static list, etc.:

public static IEnumerable<Color> Colors = new List<Color> { 
    new Color {
        ColorId = 1,
        Name = "Red"
    },
    new Color {
        ColorId = 2,
        Name = "Blue"
    }
};

In your view, you can create a drop down list like so:

<%= Html.DropDownListFor(n => n.MyColorId, new SelectList(Colors, "ColorId", "Name")) %>
link|improve this answer
that really clear. I'd like to know where should I put the IEnumerable<Color> in my code? I know it seems stupid as question but I'm very lost and new in it :s – Rinesse Jun 16 '10 at 23:46
1  
No worries, friend. I know how it feels. :) As you suggested in your initial question, is this a static list that you're going to create in code, or are you going to be pulling this list from a database? – weirdlover Jun 16 '10 at 23:58
a static list which contains 4 options not frop a data base – Rinesse Jun 17 '10 at 1:02
Create a static class called "HtmlLists" or something. Place the static class in the System.Web.Mvc namespace. In your static class, add your static list of IEnumerable<Color> Colors. Then, on your view, you can reference it by calling HtmlLists.Colors. Hope that makes sense. Let me know. :) – weirdlover Jun 17 '10 at 1:25
I'll try it now:). thank you a lot :) – Rinesse Jun 17 '10 at 10:37
show 1 more comment
feedback
<%: 
     Html.DropDownListFor(
           model => model.Color, 
           new SelectList(
                  new List<Object>{ 
                       new { value = 0 , text = "Red"  },
                       new { value = 1 , text = "Blue" },
                       new { value = 2 , text = "Green"}
                    },
                  "value",
                  "text",
                   Model.Color
           )
        )
%>

or you can write no classes, put something like this directly to the view.

link|improve this answer
Thanks, this was hard to find a solution for... – ctorx Jan 22 '11 at 4:29
feedback

Avoid of lot of fat fingering by starting with a Dictionary in the Model

namespace EzPL8.Models
{
    public class MyEggs
    {
        public Dictionary<int, string> Egg { get; set; }

        public MyEggs()
        {
            Egg = new Dictionary<int, string>()
            {
                { 0, "No Preference"},
                { 1, "I hate eggs"},
                { 2, "Over Easy"},
                { 3, "Sunny Side Up"},
                { 4, "Scrambled"},
                { 5, "Hard Boiled"},
                { 6, "Eggs Benedict"}
            };

    }


    }

In the View convert it to a list for display

@Html.DropDownListFor(m => m.Egg.Keys,
                         new SelectList(
                             Model.Egg, 
                             "Key", 
                             "Value"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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