Tag: Controller
How to add a Controller in ASP.NET MVC Application ?
Controller is one of the main component in the MVC Architecture. When the user enters the URL , the requests are first handled by the controllers which then identifies the right view to be rendered. The controllers class is inherited from System.Web.Mvc.Controller class and it contains various action methods. How to add a Controller in ASP.NET MVC Application ? To add the controller in ASP.NET…