我是 asp.net,MVC 的新手。我正在尝试填充我的下拉列表。我为此找到了以下解决方案。 如何编写一个简单的 Html.DropDownListFor()?我正在尝试 BARAT 的解决方案,但面临 NullReferenceException 错误。以下是我的代码。
<%: Html.DropDownListFor(model => model.CreditCardType,
new SelectList(
new List<Object>{
new { value = 0, text="VISA"},
new { value = 1, text="Master"},
new { value = 2, text="Debit"}},
"value",
"text",
Model.CreditCardType)
)%>
ErrorDetail:对象引用未设置为对象的实例。
谁能帮帮我吗?我可能会犯一些小错误,但无法修复它。