Controller
In this section, you will learn about the Controller in ASP.NET MVC.
The Controller in MVC architecture handles any incoming URL request. Controller is a class, derived from the base class System.Web.Mvc.Controller
. Controller class contains public methods called Action methods. Controller and its action method handles incoming browser requests, retrieves necessary model data and returns appropriate responses.
In ASP.NET MVC, every controller class name must end with a word "Controller". For example, controller for home page must be HomeController and controller for student must be StudentController. Also, every controller class must be located in Controller folder of MVC folder structure.
Adding a New Controller
Now, let's add a new empty controller in our MVC application in Visual Studio.
In the previous section we learned how to create our first MVC application, which in turn created a default HomeController. Here, we will create a new StudentController.
In the Visual Studio, right click on the Controller folder -> select Add -> click on Controller..
This opens Add Scaffold dialog as shown below.
Add Scaffold dialog contains different templates to create a new controller. We will learn about other templates later. For now, select "MVC 5 Controller - Empty" and click Add. It will open Add Controller dialog as shown below
In the Add Controller dialog, enter the name of the controller. Remember, controller name must end with Controller. Let's enter StudentController and click Add.
This will create StudentController class with Index method in StudentController.cs file under Controllers folder, as shown below.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MVC_BasicTutorials.Controllers
{
public class StudentController : Controller
{
// GET: Student
public ActionResult Index()
{
return View();
}
}
}
As you can see above, the StudentController class is derived from Controller class. Every controller in MVC must derived from this abstract Controller class. This base Controller class contains helper methods that can be used for various purposes.
Now, we will return a dummy string from Index action method of above StudentController. Changing the return type of Index method from ActionResult to string and returning dummy string is shown below. You will learn about ActionResult in the next section.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MVC_BasicTutorials.Controllers
{
public class StudentController : Controller
{
// GET: Student
public string Index()
{
return "This is Index action method of StudentController";
}
}
}
We have already seen in the routing section that the URL request http://localhost/student or http://localhost/student/index is handled by the Index() method of StudentController class, shown above. So let's invoke it from the browser and you will see the following page in the browser.
- A Controller handles incomming URL requests. MVC routing sends request to appropriate controller and action method based on URL and configured Routes.
- All the public methods in the Controller class are called Action methods.
- A Controller class must be derived from System.Web.Mvc.Controller class.
- A Controller class name must end with "Controller".
- New controller can be created using different scaffolding templates. You can create custom scaffolding template also.