--- uid: mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-controller title: "Adding a Controller | Microsoft Docs" author: Rick-Anderson description: "Note: An updated version of this tutorial is available here that uses ASP.NET MVC 5 and Visual Studio 2013. It's more secure, much simpler to follow and demo..." ms.author: aspnetcontent manager: wpickett ms.date: 08/28/2012 ms.topic: article ms.assetid: 0267d31c-892f-49a1-9e7a-3ae8cc12b2ca ms.technology: dotnet-mvc ms.prod: .net-framework msc.legacyurl: /mvc/overview/older-versions/getting-started-with-aspnet-mvc4/adding-a-controller msc.type: authoredcontent --- Adding a Controller ==================== by [Rick Anderson](https://github.com/Rick-Anderson) > > [!NOTE] > > An updated version of this tutorial is available [here](../../getting-started/introduction/getting-started.md) that uses ASP.NET MVC 5 and Visual Studio 2013. It's more secure, much simpler to follow and demonstrates more features. MVC stands for *model-view-controller*. MVC is a pattern for developing applications that are well architected, testable and easy to maintain. MVC-based applications contain: - **M** odels: Classes that represent the data of the application and that use validation logic to enforce business rules for that data. - **V** iews: Template files that your application uses to dynamically generate HTML responses. - **C** ontrollers: Classes that handle incoming browser requests, retrieve model data, and then specify view templates that return a response to the browser. We'll be covering all these concepts in this tutorial series and show you how to use them to build an application. Let's begin by creating a controller class. In **Solution Explorer**, right-click the *Controllers* folder and then select **Add Controller**. ![](adding-a-controller/_static/image1.png) Name your new controller "HelloWorldController". Leave the default template as **Empty MVC controller** and click **Add**. ![add controller](adding-a-controller/_static/image2.png) Notice in **Solution Explorer** that a new file has been created named *HelloWorldController.cs*. The file is open in the IDE. ![](adding-a-controller/_static/image3.png) Replace the contents of the file with the following code. [!code-csharp[Main](adding-a-controller/samples/sample1.cs)] The controller methods will return a string of HTML as an example. The controller is named `HelloWorldController` and the first method above is named `Index`. Let's invoke it from a browser. Run the application (press F5 or Ctrl+F5). In the browser, append "HelloWorld" to the path in the address bar. (For example, in the illustration below, it's `http://localhost:1234/HelloWorld.`) The page in the browser will look like the following screenshot. In the method above, the code returned a string directly. You told the system to just return some HTML, and it did! ![](adding-a-controller/_static/image4.png) ASP.NET MVC invokes different controller classes (and different action methods within them) depending on the incoming URL. The default URL routing logic used by ASP.NET MVC uses a format like this to determine what code to invoke: `/[Controller]/[ActionName]/[Parameters]` The first part of the URL determines the controller class to execute. So */HelloWorld* maps to the `HelloWorldController` class. The second part of the URL determines the action method on the class to execute. So */HelloWorld/Index* would cause the `Index` method of the `HelloWorldController` class to execute. Notice that we only had to browse to */HelloWorld* and the `Index` method was used by default. This is because a method named `Index` is the default method that will be called on a controller if one is not explicitly specified. Browse to `http://localhost:xxxx/HelloWorld/Welcome`. The `Welcome` method runs and returns the string "This is the Welcome action method...". The default MVC mapping is `/[Controller]/[ActionName]/[Parameters]`. For this URL, the controller is `HelloWorld` and `Welcome` is the action method. You haven't used the `[Parameters]` part of the URL yet. ![](adding-a-controller/_static/image5.png) Let's modify the example slightly so that you can pass some parameter information from the URL to the controller (for example, */HelloWorld/Welcome?name=Scott&numtimes=4*). Change your `Welcome` method to include two parameters as shown below. Note that the code uses the C# optional-parameter feature to indicate that the `numTimes` parameter should default to 1 if no value is passed for that parameter. [!code-csharp[Main](adding-a-controller/samples/sample2.cs)] Run your application and browse to the example URL (`http://localhost:xxxx/HelloWorld/Welcome?name=Scott&numtimes=4)`. You can try different values for `name` and `numtimes` in the URL. The [ASP.NET MVC model binding system](http://odetocode.com/Blogs/scott/archive/2009/04/27/6-tips-for-asp-net-mvc-model-binding.aspx) automatically maps the named parameters from the query string in the address bar to parameters in your method. ![](adding-a-controller/_static/image6.png) In both these examples the controller has been doing the "VC" portion of MVC — that is, the view and controller work. The controller is returning HTML directly. Ordinarily you don't want controllers returning HTML directly, since that becomes very cumbersome to code. Instead we'll typically use a separate view template file to help generate the HTML response. Let's look next at how we can do this. >[!div class="step-by-step"] [Previous](intro-to-aspnet-mvc-4.md) [Next](adding-a-view.md)