我得到了繼承的觀點:System.Web.Mvc.ViewPage<IEnumerable<MyProjects.Models.MyAccountWrapper>>
Asp.Net MVC的RenderPartial不同型號
在這個視圖列出有關對象MyAccountWrapper數據。該對象包含一個Account的列表。像這樣MyAccountWrapper.Accounts
我想在這個視圖中能夠創建一個帳戶。
所以我儘量<% Html.RenderPartial("../Account/Create"); %>
但我得到了錯誤的並不是很好的模式。我該如何處理?
你有沒有一個例子或你建議的鏈接? – Melursus 2009-11-08 14:19:23
RenderPartial有一個重載,允許您將模型作爲第二個參數傳遞。它應該顯示在你的智能感知中。 – 2009-11-08 18:05:52
Html.RenderPartial(「../ Account/Create」,(IEnumerable)ViewData [「Accounts」]);您通過ViewData將MyAccountWrapper傳遞到視圖的位置 –
2009-11-08 19:11:00