I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level of experience he/she has with this program.

Program is a table in an Sql Server database, and is accessed through Entity Framework. So it would be easy enough to bind the Level property in the ViewModel to a textbox:

@Html.TextBoxFor(model => model.Level)

But I want a dropdownlist with a limited number of levels (1-5). So how do I do this and still have the dropdownlist bind to the ViewModel property?

link|improve this question

73% accept rate
feedback

1 Answer

up vote 2 down vote accepted
@Html.DropDownListFor( model => model.Level, new SelectList(new [] {1, 2, 3, 4, 5}) );
link|improve this answer
Thanks, works great! – Anders Svensson Feb 21 '11 at 22:54
feedback

Your Answer

 
or
required, but never shown

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