0

When you start debugging visual studio goes to http://localhost:3896/ by default is there a way to manipulate the startup so that it goes to http://localhost:3896/PROJ/Home instead.

I would like to do this without having to pop a redirect into the main controller, e.g. Not: Redirect("~/PROJ/Home");

Nkosi
  • 235,767
  • 35
  • 427
  • 472
Hank
  • 2,456
  • 3
  • 35
  • 83
  • 1
    In Visual Studio 2017 it's under the "Web" tab of the project properties screen. I can't remember if it's the same in 2013 however. – ProgrammingLlama Nov 29 '18 at 01:38
  • Does this answer your question? [Visual Studio ASP.NET MVC project: setting the start URL](https://stackoverflow.com/questions/1982081/visual-studio-asp-net-mvc-project-setting-the-start-url) – Michael Freidgeim Dec 29 '22 at 02:55

1 Answers1

4

Project properties>Web>Start Actions>Start URL

Populate that field with http://localhost:3896/PROJ/Home and select the radio button.

Nathan Werry
  • 876
  • 7
  • 18