使用单个模型渲染两个局部视图

发布于 2024-11-29 09:53:49 字数 518 浏览 1 评论 0原文

我正在尝试使用相同的登录模型渲染 2 个部分视图:

<div id="divLoginPopupContent" class="popupContent">
  <div id="divLPBox"><% Html.RenderPartial("LoginPopup", ViewData["LoginModel"]); %></div>
  <div id="divFBBox"><% Html.RenderPartial("RetrievePassword", ViewData["LoginModel"]); %></div>
</div>

它给了我一个错误 在此处输入图像描述

ViewData["LoginModel"] = new LoginModel();

你能告诉我问题是什么吗?

i am trying to render 2 partial views using same loginmodel:

<div id="divLoginPopupContent" class="popupContent">
  <div id="divLPBox"><% Html.RenderPartial("LoginPopup", ViewData["LoginModel"]); %></div>
  <div id="divFBBox"><% Html.RenderPartial("RetrievePassword", ViewData["LoginModel"]); %></div>
</div>

and it is giving me an errorenter image description here

and ViewData["LoginModel"] = new LoginModel();

can you tell me whats the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不疑不惑不回忆 2024-12-06 09:53:49

您的部分 LoginPopup.ascxRetrievePassword.ascx<%@ Control ... > 指令>。确保只有一个控制指令。

You are likely having more than one <%@ Control ... > directives in one of your partials LoginPopup.ascx or RetrievePassword.ascx. Make sure there is only one control directive.

掐死时间 2024-12-06 09:53:49

尝试强输入您的视图

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<LoginModel>" %>

,然后传入模型

<div><%Html.RenderPartial("LoginPopup",Model) %></div>
<div><%Html.RenderPartial("RetrievePassword",Model) %></div>

try strongly typing your view

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<LoginModel>" %>

then pass in the model

<div><%Html.RenderPartial("LoginPopup",Model) %></div>
<div><%Html.RenderPartial("RetrievePassword",Model) %></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文