views:

40

answers:

3

I've accidentaly clicked "Set as Startup page" on Index.aspx of ASP.NET MVC application.

Now every time I click Debug, it starts here: http://localhost:5577/Views/Home/Index.aspx

Which obviously gives me an error.

Can i revert the startup page back to the original http://localhost:5577?

+1  A: 

You can set the start url in the web tab of project properties

Info from msdn here

redsquare
+1  A: 

project -> property pages -> Start Options -> Use Current page

onder
+3  A: 

Set your start URL to be blank in the project properties.

alt text

p.campbell