From 381c9438db9d9216155b0e33fe3f6427834ca963 Mon Sep 17 00:00:00 2001 From: Stuart Celarier Date: Fri, 21 Aug 2015 11:48:23 -0700 Subject: [PATCH] Update your-first-aspnet-application.rst Correct the reference of AboutController to HomeController and fix rest of sentence. --- aspnet/tutorials/your-first-aspnet-application.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/tutorials/your-first-aspnet-application.rst b/aspnet/tutorials/your-first-aspnet-application.rst index 31de6d5070..dacef6e0c5 100644 --- a/aspnet/tutorials/your-first-aspnet-application.rst +++ b/aspnet/tutorials/your-first-aspnet-application.rst @@ -71,7 +71,7 @@ Now we can add a bit of behavior to both the server and the client of the defaul Adding Server-Side Behavior --------------------------- -We've already tweaked the behavior of the HomeController's ``About`` method to change the Message passed to the View. We can add additional server-side behavior by further modifying the AboutController and associated View. Then, we'll enhance this basic information by adding some client-side behavior that makes API calls back to the server. +We've already tweaked the behavior of the HomeController's ``About`` method to change the Message passed to the View. We can add additional server-side behavior by further modifying the HomeController's About action and its associated View. Then, we'll enhance this basic information by adding some client-side behavior that makes API calls back to the server. To start, add a new ViewModel class called ServerInfoViewModel. I'm adding this in a new ``ViewModels`` folder as a convention, but you can place the file in another folder if you prefer.