Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple model / view with things like Username, Password etc. and use helpers fine to hook it up.

I now have a field called "NumberOfChildren". I want to store a number in it (int) and I want it render a dropdown box containing "None", "1", "2" etc.

My thoughts would be that the model would have a list or a method that returns a list, so I can specify the values such as NumberOfChildren_List that I put the data into, and then DropDownListFor pulls that list and renders it, matching the value to the value of the item in the dropdown.

However after spending about 30 minutes on trying to figure out how on earth it works, I gave up and decided to ask here. Any ideas?

Edit: Here's some code...

<%: Html.DropDownListFor(m => m.NumberOfChildren, new SelectList(Model.NumberOfChildrenListValues))%>

and in the model

        [Required]
        [DisplayName("How many children do you have?")]
        public string NumberOfChildren { get; set; }

        public IEnumerable<string> NumberOfChildrenListValues
        {
            get
            {
                List<string> list = new List<string>() { "None", "1", "2" };

                return list;
            }

            set
            {

            }

        }

I get an object not set to instance of object error though. Ideas?

share|improve this question
Have a look at stackoverflow.com/questions/2306527/… (poss. dupe) – Lazarus Jun 9 '10 at 12:56
1  
Yeah I saw that first, but it's confusing as the guy already has some stuff, and the accepted answer is bizarre. – SLC Jun 9 '10 at 12:58

1 Answer

Try like this (you need to set the text and the value for each option - the text will be used for rendering in the dropdown list and the value will be used to bind to the selected item to the NumberOfChildren property):

[Required]
[DisplayName("How many children do you have?")]
public string NumberOfChildren { get; set; }

public IEnumerable<SelectListItem> NumberOfChildrenListValues
{
    get
    {
        return new[]
        {
            new SelectListItem { Value = "0", Text = "None" },
            new SelectListItem { Value = "1", Text = "1" },
            new SelectListItem { Value = "2", Text = "2" },
        };
    }
}

and then:

<%: Html.DropDownListFor(
    m => m.NumberOfChildren, 
    Model.NumberOfChildrenListValues
) %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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