AspNetCore.Docs/aspnetcore/tutorials/first-mvc-app-xplat/adding-controller.md

29 lines
932 B
Markdown
Raw Normal View History

---
title: Add a controller to an ASP.NET Core app
2018-01-29 23:21:31 +08:00
author: rick-anderson
description: Learn how to add a controller to a simple ASP.NET Core MVC app.
manager: wpickett
2018-01-29 23:21:31 +08:00
ms.author: riande
ms.date: 02/28/2017
ms.prod: asp.net-core
2018-01-29 23:21:31 +08:00
ms.technology: aspnet
ms.topic: get-started-article
uid: tutorials/first-mvc-app-xplat/adding-controller
---
# Add a controller to an ASP.NET Core app
By [Rick Anderson](https://twitter.com/RickAndMSFT)
2018-04-05 07:51:35 +08:00
[!INCLUDE [adding-controller](../../includes/mvc-intro/adding-controller1.md)]
* In **VS Code**, select the **EXPLORER** icon and then control-click (right-click) **Controllers > New File** and name the new file HelloWorldController.cs.
2018-04-05 07:51:35 +08:00
![Contextual menu](adding-controller/_static/new_file.png)
2018-04-05 07:51:35 +08:00
[!INCLUDE [adding-controller2](../../includes/mvc-intro/adding-controller2.md)]
2018-04-05 07:51:35 +08:00
> [!div class="step-by-step"]
> [Previous - Add a controller](start-mvc.md)
> [Next - Add a view](adding-view.md)