开发者

MVC - Clear default selected value of SelectList

I have a SelectList that gets populated with data from the database. The data comes from a Dictionary<int, string> and populates the SelectList like below.

//...

Courses = new SelectList(GetCourses(),"Key","Value");

//...

On the View, it shows the first record from the database as the default selected value on the dropdown. I'd like to clear this value and leave the dropdown empty so the user can manually select a value. If possible witho开发者_StackOverflow社区ut using javascript.

//I have this on the view
<%= Html.DropDownListFor(model => model.CourseID, Model.Courses) %>

Please help!


Use the overload which takes an optionLabel:

<%= Html.DropDownListFor(model => model.CourseID, Model.Courses, string.Empty) %>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜