ASP.NET MVC controller actions that return JSON or partial html - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T21:11:06Z http://stackoverflow.com/feeds/question/227624 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html 12 ASP.NET MVC controller actions that return JSON or partial html NathanD 2008-10-22T21:31:05Z 2009-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#227638 13 Answer by Haacked for ASP.NET MVC controller actions that return JSON or partial html Haacked 2008-10-22T21:38:33Z 2009-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>&lt;%= Ajax.ActionLink("SomeActionMethod", new AjaxOptions {OnSuccess="somemethod"}) %&gt; </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("&lt;xml&gt;This is poorly formatted xml.&lt;/xml&gt;", "text/xml"); </code></pre> http://stackoverflow.com/questions/227624/asp-net-mvc-controller-actions-that-return-json-or-partial-html/227706#227706 7 Answer by SaaS Developer for ASP.NET MVC controller actions that return JSON or partial html SaaS Developer 2008-10-22T22:08:09Z 2008-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#228182 4 Answer by Brad Wilson for ASP.NET MVC controller actions that return JSON or partial html Brad Wilson 2008-10-23T01:25:39Z 2008-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#1492970 2 Answer by James Green for ASP.NET MVC controller actions that return JSON or partial html James Green 2009-09-29T14:38:38Z 2009-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>