如何在MVC4中执行两次DisplayForModel?

时间:2013-03-09 02:45:14

标签: asp.net-mvc asp.net-mvc-4

这是我的情景。我在DisplayTemplates中有一个名为_QuestionBox的部分视图。这将呈现以下内容

enter image description here enter image description here

我的意思是,我正在执行DisplayForModel两次,但只显示第一个,而第二个(“question-content)”没有显示。我需要什么才能执行?

修改 让我澄清一下,我正在使用一个来自基础的类。

因此,视图QuestionBox用于基类,而内部显示用于具体类。

1 个答案:

答案 0 :(得分:0)

如果您在partial中使用View Model,则需要将模型传递给partial。

@Html.Partial("_partialView", model);