有人可以帮助我使用正确的语法吗?
不确定如何编写 DropDownListFor HTML 帮助程序。我将如何使用基于 3 的 Value 属性选择的“鼠标”来编写这个?我没有使用模型,只是想在 razor 中快速创建一个列表。
谢谢
var AnimalList = new List<SelectListItem>();
AnimalList.Add(new SelectListItem { Text = "Dog", Value = "1" });
AnimalList.Add(new SelectListItem { Text = "Cat", Value = "2" });
AnimalList.Add(new SelectListItem { Text = "Mouse", Value = "3" });
AnimalList.Add(new SelectListItem { Text = "Squirrel", Value = "4" });
AnimalList.Add(new SelectListItem { Text = "Fox", Value = "5" });
@Html.DropDownListFor(? , ?, ?);