diff --git a/chap3_your_first_mvc_app/PartyInvites/Controllers/HomeController.cs b/chap3_your_first_mvc_app/PartyInvites/Controllers/HomeController.cs index b7a50ee..2165da2 100644 --- a/chap3_your_first_mvc_app/PartyInvites/Controllers/HomeController.cs +++ b/chap3_your_first_mvc_app/PartyInvites/Controllers/HomeController.cs @@ -8,9 +8,9 @@ namespace PartyInvites.Controllers { public class HomeController : Controller { - public string Index() + public ActionResult Index() { - return "Hello world"; + return View(); } public ActionResult About()