我正在尝试在单个 cshtml 文件中使用多个模型。我的代码是:
@model CostumeContest.Models.VoteModel
@{
ViewBag.Title = "Vote";
}
<h2 style="color: #B45F04">Vote Receipt</h2>
<b>Your Name:</b> @Model.VoterName
<br />
<b>Your Vote for Best Costume: </b>@Model.BestName
<br />
<b>Your Vote for Most Creative Costume:</b> @Model.CreativeName
<br />
<h2 style="color: #B45F04">Vote Summary</h2>
//@model CostumeContest.Models.VoteResult this is giving me problems when not commented out
<h3 style="color: #B45F04">Best Costume</h3>
<h3 style="color: #B45F04">Most Creative Costume</h3>
我在上面做的事情有什么问题,更重要的是,我该如何解决我的问题?谢谢你。