2

I have installed:

I went to File > New Project > ASP.Net MVC 3 Web Application

I chose Empty template with ASPX view engine. VWD generated lots of files.

When I clicked Run, I get the following error:

Server Error in '/' Application.

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Requested URL: /


Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1

What am I missing here? Is there something else that needs to be done to get it running?

1 Answers1

3

Yes, that's true

An empty application doesn't have a single controller or view defined. It's all on you. Most people start with an application.

Dave Alperovich
  • 32,320
  • 8
  • 79
  • 101
  • 2
    Oh! With all the src files that were generated, I thought *something* would show up. I'll look up some samples on the net and try to add some controller/view to the application. Thanks! –  Feb 18 '13 at 02:56
  • I can see why you'd think that. But it really is "empty". No Controller, No View. All customizable. – Dave Alperovich Feb 18 '13 at 03:05