Ian Boyd
Ian Boyd

Reputation: 256651

How to create a new ASP.NET MVC web-site in Visual Studio?

From asp.net/mvc i downloaded the MVC 3 Installer, and ran it:

enter image description here

When it finished, i loaded Visual Studio and tried to create a "New" Web-site. But there's no option to create an ASP.NET MVC web-site:

enter image description here

i expected to see something like what's shown on the ASP.NET MVC homepage:

enter image description here


There is also a Getting Started tutorial that lists the steps to follow:

Creating Your First Application

You can create applications using either Visual Basic or Visual C# as the programming language. Select Visual C# on the left and then select ASP.NET MVC 3 Web Application.

enter image description here


After that didn't work, i also tried:

Upvotes: 1

Views: 411

Answers (3)

sajoshi
sajoshi

Reputation: 2763

Click on New Project and Under Visual C#, select the Web Menu Item. In the list of projects you should see a ASP.NET MVC3 Web Application. Thats what you need to use.

Btw - Are you using Visual Studio Express??

Upvotes: 1

MoXplod
MoXplod

Reputation: 3852

Look in your control panel DO you have -

enter image description here

Upvotes: 1

mnsr
mnsr

Reputation: 12437

Click on File -> New PROJECT (NOT WEBSITE). it should be in your list

Upvotes: 4

Related Questions