如何使用默认自定义值 Html.DropDownListFor(...) 预填充下拉框

How to prepopulate drop down box with default custom value Html.DropDownListFor(...)

所以我有一个预填充的下拉列表

@Html.DropDownListFor(a => a.Item2.CategoryName, new SelectList(Model.Item1.Categories))

我想在下拉列表中添加默认选择 "All Categories",我该如何实现?

试试这个

@Html.DropDownListFor(a => a.Item2.CategoryName, new SelectList(Model.Item1.Categories),"All Categories")

您实际上可以在模型列表 Categories 中添加您的默认项,然后再将其传递给您的视图,如下所示:

List<string> Categories = new List<string>();  
Categories.Add("All Categories");

然后添加其他项目。

Categories.Add("Item1");
Categories.Add("Item2");
Categories.Add("Item3");