下面是我的 UI 视图页面:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<MvcApplication1.Models.Person>" %>
现在,我添加了用户控件,它使用注册模型来显示内容。
<asp:Content ID="Content3" ContentPlaceHolderID="MyControl" runat="server">
<%Html.RenderPartial("RegisterControl"); %>
</asp:Content>
我收到错误:
传入字典的模型项的类型为“MvcApplication1.Models.Person”,但此字典需要类型为“System.Collections.Generic.IEnumerable`1[MvcApplication1.Models.RegisterModels]”的模型项。
请在这里帮助我......我需要做什么......??