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)