我是新來的asp.net,MVC。我正在嘗試填充我的下拉列表。我找到了以下解決方案。 How to write a simple Html.DropDownListFor()?我正在嘗試BARAT的解決方案,但面臨NullReferenceException的錯誤。以下是我的代碼。MVC DropDownListFor - 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:對象引用未設置爲對象的實例。
任何人都可以幫我嗎?我可能會犯小錯誤,但無法解決它。
發佈您的'NullReferenceException'的詳細信息 – GolfWolf
應該是我的Model.CreditCardType對象的數據類型?可能在那裏我犯了錯誤。 – dig123