Please follow the tutorial at http://www.asp.net/mvc/tutorials/mvc-5/introduction/getting-started
I'm only including all the info below because you can't post code downloads with out lots of text to go with it. You can ignore everything below, please to the asp.net site where the tutorial is updated and there is many good comments found.
This tutorial will teach you the basics of building an ASP.NET MVC 5 Web application using Visual Studio 2013. A VB version of this tutorial can be found at Mikesdotnetting.
Description
Visual Studio is an IDE, or integrated development environment. Just like you use Microsoft Word to write documents, you'll use an IDE to create applications. In Visual Studio there's a toolbar along the top showing various options available to you. There's also a menu that provides another way to perform tasks in the IDE. (For example, instead of selecting New Project from the Start page, you can use the menu and select File > New Project.)
Click F5 to start debugging. F5 causes Visual Studio to start
IIS Express and run your web app. Visual Studio then launches a browser and opens the application's home page. Notice that the address bar of the browser says
localhost:port#
and not something like example.com
. That's because
localhost
always points to your own local computer, which in this case is running the application you just built. When Visual Studio runs a web project, a random port is used for the web server. In the image below, the port number is 1234. When
you run the application, you'll see a different port number.