ActionResult types in MVC2
- by rajbk
In ASP.NET MVC, incoming browser requests gets mapped to a controller action method. The action method returns a type of ActionResult in response to the browser request. A basic example is shown below: public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}…