I want my dropdown to automatically select the optionLabel if my model property is null. But also automatically select the value of my property if it has value.

What is happening to me is that my dropdownlist always select the optionlabel whether my model property has or has no value.

@Html.DropDownListFor(m => m.SportsId, new SelectList((IEnumerable<SelectListItem>)ViewData[ViewDataKeys.SportList], "Value", "Text"),"---",null)

thanks!

link|improve this question

43% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.