You can create a dropdownlist using
@Html.DropDownListFor(model => model.SelectedId, model.DropDownItems);
but where does DropDownListFor get the value to pass into the model => model.SelectedId lambda from?
|
You can create a dropdownlist using
but where does DropDownListFor get the value to pass into the
| |||
|
feedback
|
|
SelectedId is just the integer of the field in the model. the model is passed in from the controller using
And the model can be defined in the view at the top
So the dropdownbox's value is set as the A proper field name for example would be
As long as Edit: If you are using viewbag, rather than the model, instead use
This above, creates an input form with id and uses a The last bit sets the default value to the contents of You can also create the select list in the controller, and then simply set the dropdown options to the | |||||
feedback
|