How to generate a HTML of a given partial view on ASP.NET view engine is known.

But if this functionality is used on razor partial view it does not work, as exception says the partial view does not derive from "UserControl".

How to fix the rendering to support razor partial view?

I need this because I generate emails form this partial views ...

UPDATE:

Code that fails (@mcl):

public string RenderPartialToString(string controlName, object viewData)
    {
        ViewPage viewPage = new ViewPage() { ViewContext = new ViewContext() };
        viewPage.Url = this.GetUrlHelper();

        string fullControlName = "~/Views/Email/" + controlName + ".ascx";

        viewPage.ViewData = new ViewDataDictionary(viewData);
        viewPage.Controls.Add(viewPage.LoadControl(fullControlName));

        StringBuilder sb = new StringBuilder();
        using (StringWriter sw = new StringWriter(sb))
        {
            using (HtmlTextWriter tw = new HtmlTextWriter(sw))
            {
                viewPage.RenderControl(tw);
            }
        }
        return sb.ToString();
    }
link|improve this question

1  
Can you show the code you have so far that generates the exception? – mcl Dec 3 '10 at 12:48
feedback

2 Answers

up vote 49 down vote accepted
@Html.Partial("nameOfPartial", Model)

Update

protected string RenderPartialViewToString(string viewName, object model)
{
    if (string.IsNullOrEmpty(viewName))
        viewName = ControllerContext.RouteData.GetRequiredString("action");

    ViewData.Model = model;

    using (StringWriter sw = new StringWriter()) {
        ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext, viewName);
        ViewContext viewContext = new ViewContext(ControllerContext, viewResult.View, ViewData, TempData, sw);
        viewResult.View.Render(viewContext, sw);

        return sw.GetStringBuilder().ToString();
    }
}

Source: http://craftycodeblog.com/2010/05/15/asp-net-mvc-render-partial-view-to-string/

link|improve this answer
Yes, this is how you render a partial view inside a view. But how to render it inside a controller action? – Peter Stegnar Dec 3 '10 at 12:42
Updated the answer. – jgauffin Dec 3 '10 at 12:53
Great this is it now! Works with Razon and ASP notation. – Peter Stegnar Dec 3 '10 at 18:57
1  
One subquestiuon: How to render the view that is in another Controller scope then the current? Lets say it is in "EmailController" scope (Email view folder)? – Peter Stegnar Dec 4 '10 at 11:38
Create a new ControllerContext – jgauffin Dec 4 '10 at 21:01
show 4 more comments
feedback

You could also use the RenderView Controller extension from here

and use it like this:

public ActionResult Do() {
var html = this.RenderView("index", theModel);
...
}

it works for razor and web-forms viewengines

link|improve this answer
Checked the link. @ChurkNorris is the author of ASP.net MVC Awesome, which is a commercial product from version 2.0 (currently latest release Mar 12 2012). Version 1.9 (latest release Jun 9 2011) is still open source, but probably won't be developed any more. Any forks of 1.9 out there? – Joel Purra Apr 11 at 14:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.