From d21eeda7a32b55d84229cbd5c3c45f2297e18ed1 Mon Sep 17 00:00:00 2001 From: Rick Anderson Date: Fri, 16 Dec 2016 20:54:31 -1000 Subject: [PATCH] Update adding-view.md (#2412) --- aspnetcore/tutorials/first-mvc-app/adding-view.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-mvc-app/adding-view.md b/aspnetcore/tutorials/first-mvc-app/adding-view.md index e2131c6c1c..b3290db980 100644 --- a/aspnetcore/tutorials/first-mvc-app/adding-view.md +++ b/aspnetcore/tutorials/first-mvc-app/adding-view.md @@ -1,4 +1,4 @@ ---- +--- title: Adding a view | Microsoft Docs author: rick-anderson description: @@ -14,6 +14,8 @@ uid: tutorials/first-mvc-app/adding-view --- # Adding a view +By [Rick Anderson](https://twitter.com/RickAndMSFT) + In this section you're going to modify the `HelloWorldController` class to use Razor view template files to cleanly encapsulate the process of generating HTML responses to a client. You'll create a view template file using Razor. Razor-based view templates have a *.cshtml* file extension, and provide an elegant way to create HTML output using C#. Razor seamlessly blends C# and HTML, minimizing the number of characters and keystrokes required when writing a view template, and enables a fast, fluid coding workflow.