Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anybody know how to get the generated html of a view inside an action?

Is it something like this:

public ActionResult Do()
{
    var html = RenderView("hello", model);
...
}
share|improve this question

1 Answer

up vote 86 down vote accepted

I use a static method in a class I called Utilities.Common I pass views back to the client as properties of JSON objects constantly so I had a need to render them to a string. Here ya go:

        public static string RenderPartialViewToString(Controller controller, string viewName, object model)
        {
            controller.ViewData.Model = model;
            try
            {
                using (StringWriter sw = new StringWriter())
                {
                    ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(controller.ControllerContext, viewName);
                    ViewContext viewContext = new ViewContext(controller.ControllerContext, viewResult.View, controller.ViewData, controller.TempData, sw);
                    viewResult.View.Render(viewContext, sw);

                    return sw.GetStringBuilder().ToString();
                }
            }
            catch (Exception ex)
            {
                return ex.ToString();
            }
        }

This will work for full views as well as partial views, just change ViewEngines.Engines.FindPartialView to ViewEngines.Engines.FindView.

share|improve this answer
3  
cool it works for both razor and webforms – Omu Jan 14 '11 at 15:16
3  
FindView needs another parameter (masterName) which you would specify null. Also I recommend saving and restoring (after rendering) controller.ViewData.Model in case the method is called on the current controller instance and model has been assigned before this call. – Andrei Rinea May 19 '11 at 11:05
1  
Also, you don't need to do sw.GetStringBuilder().ToString(), sw.ToString() will do just nice. – Andrei Rinea May 19 '11 at 11:09
1  
Well this is giving a problem for me as Value cannot be null. Parameter name: controllerContext how can o fix this problem? – HaBo Nov 16 '11 at 20:17
1  
It works great, but I wouldn't want to catch and render exceptions in my live code. – Paulo Manuel Santos Mar 14 at 15:54
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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