Updating the Default Route
So how do we make our comic book listed in our home page?
Actually, MVC routes us to http://localhost:xxxx/Home/Index. It was defined in a default route.
Take a look at Global.asax file in your Solution Explorer. There are only 2 lines of code to initialize how the application runs when it's builded.
Right-click at RouteConfig class > Go To Definition.
There are the default setting for our application. Changing our controller name is the solution that we are looking so far.
Just change it to your controller's name.