2
剛開始使用MVC3並嘗試在視圖中構建下拉列表時遇到問題。 視圖模型填充與項目的SelectList:DropDownListFor生成'名稱'模型'在當前上下文中不存在'錯誤
mdm.CaptionSetList=new SelectList(CaptionSet.Fetch(), "CaptionSetId", "Description")
然後在視圖中使用:
@Html.DropDownListFor(model => model.Entity.CaptionSetId, model.CaptionSetList)
但是當頁面命中,行被突出顯示與編譯器消息:
編譯器錯誤消息:CS0103:名稱「模式」在當前上下文中不存在
我在做什麼樣的初學者錯誤?