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".
feedback
|
|
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:
And let's say that you have the following model:
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.:
In your view, you can create a drop down list like so:
| |||||||||||||
feedback
|
or you can write no classes, put something like this directly to the view. | |||
|
feedback
|
|
Avoid of lot of fat fingering by starting with a Dictionary in the Model
In the View convert it to a list for display
| |||
|
feedback
|