Monday, December 19, 2011

Differnce Between Actionresult and VewResult in ASP.NET MVC

ActionResult is an abstract class means ViewResult derives from ActionResult. You declare it this way so you can take advantage of polymorphism and return different types in the same method. Eg: public ActionResult Foo() { if (someCondition) return View(); // returns ViewResult else return Json(); // returns JsonResult } I above example the return type of Foo() is "ActionResult" so now i am not bound to return...
Read More
Powered By Blogger · Designed By Seo Blogger Templates