This article defines how to start
project with ASP.NET MVC in VB.NET.
First of all, you want to make sure that the ASP.NET MVC3 Framework is installed
on your machine. If you are using Visual Studio 2010, it may already be
installed. It is is not installed, you may want to first download it direct from
this URL.
http://www.microsoft.com/web/gallery/install.aspx?appsxml=&appid=MVC3
After the installation of MVC Framework, then you go ahead and create an ASP.NET
MVC Web Application by using
File -> New -> Project -> Web -> ASP.NET MVC web Application.

Figure1.gif
This will bring up the "New Project" dialog. To create a new ASP.NET MVC
application, we'll select the "Web" node on the left-hand side of the dialog and
then choose the "ASP.NET MVC Web Application" project template on the right.

Figure2.gif
Now we click Ok Visual Studio will bring up an additional dialog, select
Internet Application. Leave Razor as the default view engine.

Figure3.gif
Now click OK. Visual Web Developer used a default template for the ASP.NET MVC
project you just created, so you have a working application right now without
doing anything! This is a simple "Hello World!" project, and it's a good place
to start your application.

Figure4.gif
Now click on the Debug menu and select Start Debugging.

Figure5.gif
Now run the application and test it. Press Ctrl+F5

Figure6.gif