ASP.NET MVC’s ActionResult in depth
UncategorizedPublished February 22, 2010 at 8:47 PM No CommentsActionResult Class is a valuable abstract class in ASP.NET MVC Framework. ActionMethods mostly return an ActionResult. First let’s see what is an ActionMethod ? Any class that inherits from System.Web.Mvc.Controller can use action methods to serve web requests. The requirements for a method to be web-callable as an action method are well documented on http://www.asp.net/mvc.
read more..

