Consider an ASP.NET MVC 2 project with VS 2010. The goal is to set the 'start URL' on run/debug using VS's built-in Cassini web server.
Entering the URL as I want to be loaded, in the typical & valid format, controller/action
, VS 2010 gives this exception.
Tried Remedies:
- starting the URL with and without a slash
- ending the URL with and without a slash
Question: How can you specify the start URL for an MVC 2 project?
Technologies:
- Visual Studio 2010
- ASP.NET MVC 2
Resolution: I was using the wrong field in the startup options. What was needed was the "Specific Page" field with the relative URL, and not Start URL.
Cassini
did you mean the ASP.NET standalone dev server or the open-source Cassini web server sample or the server that someone developed off of Cassini? – Hulky