82

我正在编程的某些站点同时使用 ASP.NET MVC 和 WebForms。

我有一个部分视图,我想将其包含在网络表单中。部分视图有一些必须在服务器中处理的代码,因此使用 Response.WriteFile 不起作用。它应该在禁用 javascript 的情况下工作。

我怎样才能做到这一点?

4

7 回答 7

101

我查看了 MVC 源代码,看看我是否可以弄清楚如何做到这一点。控制器上下文、视图、视图数据、路由数据和 html 渲染方法之间似乎存在非常紧密的耦合。

基本上为了实现这一点,您需要创建所有这些额外的元素。其中一些相对简单(例如视图数据),但有些更复杂 - 例如路由数据将考虑忽略当前的 WebForms 页面。

最大的问题似乎是 HttpContext - MVC 页面依赖于 HttpContextBase(而不是像 WebForms 那样的 HttpContext),虽然两者都实现了 IServiceProvider,但它们并不相关。MVC 的设计者经过深思熟虑决定不更改传统的 WebForms 以使用新的上下文库,但是他们确实提供了一个包装器。

这有效,并允许您将部分视图添加到 WebForm:

public class WebFormController : Controller { }

public static class WebFormMVCUtil
{

    public static void RenderPartial( string partialName, object model )
    {
        //get a wrapper for the legacy WebForm context
        var httpCtx = new HttpContextWrapper( System.Web.HttpContext.Current );

        //create a mock route that points to the empty controller
        var rt = new RouteData();
        rt.Values.Add( "controller", "WebFormController" );

        //create a controller context for the route and http context
        var ctx = new ControllerContext( 
            new RequestContext( httpCtx, rt ), new WebFormController() );

        //find the partial view using the viewengine
        var view = ViewEngines.Engines.FindPartialView( ctx, partialName ).View;

        //create a view context and assign the model
        var vctx = new ViewContext( ctx, view, 
            new ViewDataDictionary { Model = model }, 
            new TempDataDictionary() );

        //render the partial view
        view.Render( vctx, System.Web.HttpContext.Current.Response.Output );
    }

}

然后在您的 WebForm 中,您可以执行以下操作:

<% WebFormMVCUtil.RenderPartial( "ViewName", this.GetModel() ); %>
于 2009-07-02T12:26:18.443 回答
41

花了一段时间,但我找到了一个很好的解决方案。Keith 的解决方案适用于很多人,但在某些情况下它并不是最好的,因为有时您希望您的应用程序通过控制器渲染视图的过程,而Keith 的解决方案只是使用给定模型渲染视图我'我在这里提出一个新的解决方案,它将运行正常的过程。

一般步骤:

  1. 创建一个实用程序类
  2. 使用虚拟视图创建虚拟控制器
  3. 在您的aspxormaster page中,调用实用程序方法来渲染部分传递控制器、视图以及要渲染的模型(作为对象),如果需要,

让我们在这个例子中仔细检查一下

1)创建一个名为的类MVCUtility并创建以下方法:

    //Render a partial view, like Keith's solution
    private static void RenderPartial(string partialViewName, object model)
    {
        HttpContextBase httpContextBase = new HttpContextWrapper(HttpContext.Current);
        RouteData routeData = new RouteData();
        routeData.Values.Add("controller", "Dummy");
        ControllerContext controllerContext = new ControllerContext(new RequestContext(httpContextBase, routeData), new DummyController());
        IView view = FindPartialView(controllerContext, partialViewName);
        ViewContext viewContext = new ViewContext(controllerContext, view, new ViewDataDictionary { Model = model }, new TempDataDictionary(), httpContextBase.Response.Output);
        view.Render(viewContext, httpContextBase.Response.Output);
    }

    //Find the view, if not throw an exception
    private static IView FindPartialView(ControllerContext controllerContext, string partialViewName)
    {
        ViewEngineResult result = ViewEngines.Engines.FindPartialView(controllerContext, partialViewName);
        if (result.View != null)
        {
            return result.View;
        }
        StringBuilder locationsText = new StringBuilder();
        foreach (string location in result.SearchedLocations)
        {
            locationsText.AppendLine();
            locationsText.Append(location);
        }
        throw new InvalidOperationException(String.Format("Partial view {0} not found. Locations Searched: {1}", partialViewName, locationsText));
    }       

    //Here the method that will be called from MasterPage or Aspx
    public static void RenderAction(string controllerName, string actionName, object routeValues)
    {
        RenderPartial("PartialRender", new RenderActionViewModel() { ControllerName = controllerName, ActionName = actionName, RouteValues = routeValues });
    }

创建一个传递参数的类,我这里调用RendeActionViewModel(你可以在MvcUtility Class的同一个文件中创建)

    public class RenderActionViewModel
    {
        public string ControllerName { get; set; }
        public string ActionName { get; set; }
        public object RouteValues { get; set; }
    }

2) 现在创建一个名为DummyController

    //Here the Dummy controller with Dummy view
    public class DummyController : Controller
    {
      public ActionResult PartialRender()
      {
          return PartialView();
      }
    }

使用以下内容创建一个名为PartialRender.cshtml(razor view)的虚拟视图DummyController,注意它将使用 Html 帮助器执行另一个渲染操作。

@model Portal.MVC.MvcUtility.RenderActionViewModel
@{Html.RenderAction(Model.ActionName, Model.ControllerName, Model.RouteValues);}

3)现在只需将其放在您的MasterPageoraspx文件中,以部分呈现您想要的视图。请注意,当您有多个要与您的MasterPageaspx页面混合的剃刀视图时,这是一个很好的答案。(假设我们有一个名为 Login 的 PartialView 用于 Controller Home)。

    <% MyApplication.MvcUtility.RenderAction("Home", "Login", new { }); %>

或者如果你有一个传递给 Action 的模型

    <% MyApplication.MvcUtility.RenderAction("Home", "Login", new { Name="Daniel", Age = 30 }); %>

这个解决方案很棒,不使用ajax调用,不会导致嵌套视图延迟渲染,它不会发出新的WebRequest,因此不会给你带来新的会话,它会处理检索方法您想要的视图的 ActionResult ,它可以在不传递任何模型的情况下工作

感谢在 Web 表单中使用 MVC RenderAction

于 2014-07-21T14:06:52.303 回答
20

最明显的方法是通过 AJAX

像这样的东西(使用jQuery)

<div id="mvcpartial"></div>

<script type="text/javascript">
$(document).load(function () {
    $.ajax(
    {    
        type: "GET",
        url : "urltoyourmvcaction",
        success : function (msg) { $("#mvcpartial").html(msg); }
    });
});
</script>
于 2009-03-31T20:22:15.737 回答
11

这太好了,谢谢!

我在 .NET 4 上使用 MVC 2,这需要将 TextWriter 传递到 ViewContext,因此您必须传递 httpContextWrapper.Response.Output,如下所示。

    public static void RenderPartial(String partialName, Object model)
    {
        // get a wrapper for the legacy WebForm context
        var httpContextWrapper = new HttpContextWrapper(HttpContext.Current);

        // create a mock route that points to the empty controller
        var routeData = new RouteData();
        routeData.Values.Add(_controller, _webFormController);

        // create a controller context for the route and http context
        var controllerContext = new ControllerContext(new RequestContext(httpContextWrapper, routeData), new WebFormController());

        // find the partial view using the viewengine
        var view = ViewEngines.Engines.FindPartialView(controllerContext, partialName).View as WebFormView;

        // create a view context and assign the model
        var viewContext = new ViewContext(controllerContext, view, new ViewDataDictionary { Model = model }, new TempDataDictionary(), httpContextWrapper.Response.Output);

        // render the partial view
        view.Render(viewContext, httpContextWrapper.Response.Output);
    }
于 2011-09-12T21:11:56.110 回答
6

这是一种对我有用的类似方法。策略是将部分视图呈现为字符串,然后在 WebForm 页面中输出。

 public class TemplateHelper
{
    /// <summary>
    /// Render a Partial View (MVC User Control, .ascx) to a string using the given ViewData.
    /// http://www.joeyb.org/blog/2010/01/23/aspnet-mvc-2-render-template-to-string
    /// </summary>
    /// <param name="controlName"></param>
    /// <param name="viewData"></param>
    /// <returns></returns>
    public static string RenderPartialToString(string controlName, object viewData)
    {
        ViewDataDictionary vd = new ViewDataDictionary(viewData);
        ViewPage vp = new ViewPage { ViewData = vd};
        Control control = vp.LoadControl(controlName);

        vp.Controls.Add(control);

        StringBuilder sb = new StringBuilder();
        using (StringWriter sw = new StringWriter(sb))
        {
            using (HtmlTextWriter tw = new HtmlTextWriter(sw))
            {
                vp.RenderControl(tw);
            }
        }

        return sb.ToString();
    }
}

在页面代码隐藏中,您可以执行

public partial class TestPartial : System.Web.UI.Page
{
    public string NavigationBarContent
    {
        get;
        set;
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        NavigationVM oVM = new NavigationVM();

        NavigationBarContent = TemplateHelper.RenderPartialToString("~/Views/Shared/NavigationBar.ascx", oVM);

    }
}

在页面中,您将可以访问呈现的内容

<%= NavigationBarContent %>

希望有帮助!

于 2011-08-14T07:04:19.317 回答
3

该解决方案采用不同的方法。它定义了一个System.Web.UI.UserControl可以放置在任何 Web 窗体上并被配置为显示来自任何 URL 的内容……包括 MVC 部分视图。这种方法类似于对 HTML 的 AJAX 调用,因为参数(如果有)是通过 URL 查询字符串给出的。

首先,在 2 个文件中定义一个用户控件:

/controls/PartialViewControl.ascx 文件

<%@ Control Language="C#" 
AutoEventWireup="true" 
CodeFile="PartialViewControl.ascx.cs" 
Inherits="PartialViewControl" %>

/controls/PartialViewControl.ascx.cs:

public partial class PartialViewControl : System.Web.UI.UserControl {
    [Browsable(true),
    Category("Configutation"),
    Description("Specifies an absolute or relative path to the content to display.")]
    public string contentUrl { get; set; }

    protected override void Render(HtmlTextWriter writer) {
        string requestPath = (contentUrl.StartsWith("http") ? contentUrl : "http://" + Request.Url.DnsSafeHost + Page.ResolveUrl(contentUrl));
        WebRequest request = WebRequest.Create(requestPath);
        WebResponse response = request.GetResponse();
        Stream responseStream = response.GetResponseStream();
        var responseStreamReader = new StreamReader(responseStream);
        var buffer = new char[32768];
        int read;
        while ((read = responseStreamReader.Read(buffer, 0, buffer.Length)) > 0) {
            writer.Write(buffer, 0, read);
        }
    }
}

然后将用户控件添加到您的 Web 表单页面:

<%@ Page Language="C#" %>
<%@ Register Src="~/controls/PartialViewControl.ascx" TagPrefix="mcs" TagName="PartialViewControl" %>
<h1>My MVC Partial View</h1>
<p>Below is the content from by MVC partial view (or any other URL).</p>
<mcs:PartialViewControl runat="server" contentUrl="/MyMVCView/"  />
于 2014-06-10T23:05:05.463 回答
1

FWIW,我需要能够从现有的 webforms 代码动态呈现部分视图,并将其插入给定控件的顶部。我发现 Keith 的回答会导致部分视图在<html />标签外渲染。

使用 Keith 和 Hilarius 的答案作为灵感,我没有直接渲染到 HttpContext.Current.Response.Output,而是渲染了 html 字符串并将其作为 LiteralControl 添加到相关控件中。

在静态助手类中:

    public static string RenderPartial(string partialName, object model)
    {
        //get a wrapper for the legacy WebForm context
        var httpCtx = new HttpContextWrapper(HttpContext.Current);

        //create a mock route that points to the empty controller
        var rt = new RouteData();
        rt.Values.Add("controller", "WebFormController");

        //create a controller context for the route and http context
        var ctx = new ControllerContext(new RequestContext(httpCtx, rt), new WebFormController());

        //find the partial view using the viewengine
        var view = ViewEngines.Engines.FindPartialView(ctx, partialName).View;

        //create a view context and assign the model
        var vctx = new ViewContext(ctx, view, new ViewDataDictionary { Model = model }, new TempDataDictionary(), new StringWriter());

        // This will render the partial view direct to the output, but be careful as it may end up outside of the <html /> tag
        //view.Render(vctx, HttpContext.Current.Response.Output);

        // Better to render like this and create a literal control to add to the parent
        var html = new StringWriter();
        view.Render(vctx, html);
        return html.GetStringBuilder().ToString();
    }

在调用类中:

    internal void AddPartialViewToControl(HtmlGenericControl ctrl, int? insertAt = null, object model)
    {
        var lit = new LiteralControl { Text = MvcHelper.RenderPartial("~/Views/Shared/_MySharedView.cshtml", model};
        if (insertAt == null)
        {
            ctrl.Controls.Add(lit);
            return;
        }
        ctrl.Controls.AddAt(insertAt.Value, lit);
    }
于 2019-03-07T12:19:10.140 回答