7

I am using the following to render a partial view to a string...

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

        ViewData.Model = model;

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

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

However it returns the html with strange tags like this below... (I have included a small section as its a big view)

<$A$><div</$A$><$B$> class="modal hide fade"</$B$><$C$> id="dialog"</$C$><$D$> 

This happens throughout the HTML. This section should look like this...

<div class="modal hide fade" id="dialog" style="display: none;">
tereško
  • 58,060
  • 25
  • 98
  • 150
MrBeanzy
  • 2,286
  • 3
  • 28
  • 38
  • possible duplicate of [MVC4 - how to render a view a string?](http://stackoverflow.com/questions/17273826/mvc4-how-to-render-a-view-a-string) – SlimShaggy Jul 14 '15 at 07:10

2 Answers2

11

The following code has always worked for me. Though I can't see any major differences, and can't understand fully why you'd get the output you're getting.

public static String RenderRazorViewToString(ControllerContext controllerContext, String viewName, Object model)
        {
        controllerContext.Controller.ViewData.Model = model;

        using (var sw = new StringWriter())
            {
            var ViewResult = ViewEngines.Engines.FindPartialView(controllerContext, viewName);
            var ViewContext = new ViewContext(controllerContext, ViewResult.View, controllerContext.Controller.ViewData, controllerContext.Controller.TempData, sw);
            ViewResult.View.Render(ViewContext, sw);
            ViewResult.ViewEngine.ReleaseView(controllerContext, ViewResult.View);
            return sw.GetStringBuilder().ToString();
            }
        }
Tentux
  • 714
  • 1
  • 4
  • 13
  • Hi Tentux, thank you for your answer, after a Clean and Rebuild it fixed the issue, must be a VS gremlin. – MrBeanzy Oct 04 '13 at 08:18
1

Strange, after a Clean and Rebuild it fixed the issue, must be a VS gremlin.

MrBeanzy
  • 2,286
  • 3
  • 28
  • 38