1
我對你所有的mvc大師有另一個簡單的問題。與mvc.net部分視圖,我如何訪問分配給模板的模型
我有以下定義的局部視圖。
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IList<whoozit.Models.PictureModel>>" %>
如何訪問已分配給視圖的數據?
我對你所有的mvc大師有另一個簡單的問題。與mvc.net部分視圖,我如何訪問分配給模板的模型
我有以下定義的局部視圖。
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IList<whoozit.Models.PictureModel>>" %>
如何訪問已分配給視圖的數據?
你可以這樣做:
<% foreach (whoozit.Models.PictureModel picture in Model)
{ %>
<%: picture.property1 %><br />
<%: picture.property2 %><br />
etc...
<% } %>
aha,關鍵字是Model。謝謝。 – yamspog 2010-09-03 19:30:19
Model屬性? – Necros 2010-09-03 19:02:49