September 2016
Beginner to intermediate
186 pages
3h 28m
English
You need to create a view for the home controller's Index action in order to test the template. Complete the following steps to accomplish this:
HomeController.cs file and, if the HomeController class does not already contain an Index action method, add it as shown here: public IActionResult Index()
{
return View();
}
Views\Home folder and Add | New Item... from the context menu.Index.cshtml, and click on Add:
Index.cshtml file and change its markup to ...Read now
Unlock full access