ASP.NET MVC controller actions that return JSON or partial html - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T21:11:06Zhttp://stackoverflow.com/feeds/question/227624http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html12ASP.NET MVC controller actions that return JSON or partial htmlNathanD2008-10-22T21:31:05Z2009-09-29T14:38:38Z
<p>I am trying to create controller actions which will return either JSON or partial html depending upon a parameter. What is the best way to get the result returned to an MVC page asynchronously?</p>
http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/227638#22763813Answer by Haacked for ASP.NET MVC controller actions that return JSON or partial htmlHaacked2008-10-22T21:38:33Z2009-08-07T19:25:30Z<p>In your action method, return Json(object) to return JSON to your page.</p>
<pre><code>public ActionResult SomeActionMethod() {
return Json(new {foo="bar", baz="Blech"});
}
</code></pre>
<p>Then just call the action method using Ajax. You could use one of the helper methods from the ViewPage such as </p>
<pre><code><%= Ajax.ActionLink("SomeActionMethod", new AjaxOptions {OnSuccess="somemethod"}) %>
</code></pre>
<p>SomeMethod would be a javascript method that then evaluates the Json object returned.</p>
<p>If you want to return a plain string, you can just use the ContentResult:</p>
<pre><code>public ActionResult SomeActionMethod() {
return Content("hello world!");
}
</code></pre>
<p>ContentResult by default returns a text/plain as its contentType.<br />
This is overloadable so you can also do:</p>
<pre><code>return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");
</code></pre>
http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/227706#2277067Answer by SaaS Developer for ASP.NET MVC controller actions that return JSON or partial htmlSaaS Developer2008-10-22T22:08:09Z2008-10-22T22:08:09Z<p>Another nice way to deal with JSON data is using the JQuery getJSON function. You can call the </p>
<pre><code>public ActionResult SomeActionMethod(int id)
{
return Json(new {foo="bar", baz="Blech"});
}
</code></pre>
<p>method from the jquery getJSON method by simply...</p>
<pre><code> $.getJSON("../SomeActionMethod", {
id: someId
},
function(data) {
alert(data.foo);
alert(data.baz);}
</code></pre>
http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/228182#2281824Answer by Brad Wilson for ASP.NET MVC controller actions that return JSON or partial htmlBrad Wilson2008-10-23T01:25:39Z2008-10-23T01:25:39Z<p>To answer the other half of the question, you can call:</p>
<pre><code>return PartialView("viewname");
</code></pre>
<p>when you want to return partial HTML. You'll just have to find some way to decide whether the request wants JSON or HTML, perhaps based on a URL part/parameter.</p>
http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/1492970#14929702Answer by James Green for ASP.NET MVC controller actions that return JSON or partial htmlJames Green2009-09-29T14:38:38Z2009-09-29T14:38:38Z<p>NathanD, </p>
<p>I think you should consider the AcceptTypes of the request. I am using it in my current project to return the correct content type as follows.</p>
<p>Your action on the controller can test it as on the request object </p>
<pre><code>if (Request.AcceptTypes.Contains("text/html")) {
return View();
}
else if (Request.AcceptTypes.Contains("application/json"))
{
return Json( new { id=1, value="new" } );
}
else if (Request.AcceptTypes.Contains("application/xml") ||
Request.AcceptTypes.Contains("text/xml"))
{
//
}
</code></pre>
<p>You can then implement the aspx of the view to cater for the partial xhtml response case.</p>
<p>Then in jQuery you can fetch it passing the type parameter as json:</p>
<pre><code>$.get(url, null, function(data, textStatus) {
console.log('got %o with status %s', data, textStatus);
}, "json"); // or xml, html, script, json, jsonp or text
</code></pre>
<p>Hope this helps
James</p>