vote up 0 vote down star

I've been happily returning JsonResult objects or partial ASP.NET views from my controllers in ASP.NET.

I would like to return a rendered partial view as a property in a JSON object. e.g.

requesting

/post/detail/1

would return

{"PostId": 1, "Html": "<p>some markup rendered from a partial to inject</p>" }

This would allow me to know the PostId when I am handling the response in JavaScript. Any tips on the best way to do this?

flag

41% accept rate

2 Answers

vote up 0 vote down

Something like:

return new JsonResult { Data = new { PostId = 1; Html = "<p>some markup rendered from a partial to inject</p>" } };
link|flag
Sounds like he knows how to use JsonResults, I think he's trying to combine a PartialView with a JsonResult... – Alconja Jul 23 at 0:15
Then the question is pretty poorly worded. – rball Jul 23 at 16:47
Yeah, I also think this is the correct answer (and was going to provide it) given the question... – Pawel Krakowiak Jul 25 at 11:10
vote up 1 vote down

I assume you're wanting to effectively make use of the automatic rendering/serialization provided by both JsonResult & PartialViewResult right? Looking at how they work internally, unfortunately they both render directly to the response, so there doesn't appear to be any built in way of doing it.

One option though, would be to inherit from the PartialViewResult class & provide a RenderResult method that works virtually identically to the built in ExecuteResult, but renders the result out to a string instead of directly into the Response. That way you could add that string as a value to your JsonResult.

The code (based directly off the PartialViewResult's ExecuteResult method):

public class RenderablePartialViewResult : PartialViewResult
{
    public string RenderResult(ControllerContext context)
    {
    	if (context == null)
    	{
    		throw new ArgumentNullException("context");
    	}
    	if (string.IsNullOrEmpty(ViewName))
    	{
    		ViewName = context.RouteData.GetRequiredString("action");
    	}
    	ViewEngineResult result = null;
    	if (View == null)
    	{
    		result = FindView(context);
    		View = result.View;
    	}
    	var viewContext = new ViewContext(context, View, ViewData, TempData);
    	var textWriter = new StringWriter();
    	View.Render(viewContext, textWriter);
    	if (result != null)
    	{
    		result.ViewEngine.ReleaseView(context, View);
    	}
    	return textWriter.ToString();
    }
}

Then in your controller you should be able to do something like this:

public ActionResult Detail(int id)
{
    //Normal processing goes here...

    var partial = new RenderablePartialViewResult();
    //set view name/model, etc here as necessary (i.e. parital.ViewName = "blah", etc)

    return new JsonResult { Data = new { PostId = id, Html = partial.RenderResult(ControllerContext) } };
}

(Note that I haven't actually tested this code)

link|flag
That's great! Just what I was looking for. I'll give it a try, and let you know how it works. – Lance Fisher Jul 23 at 1:14

Your Answer

Get an OpenID
or

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