I was wondering if there is an option to change the debugger url when I initialize the debugger. I want it to start off at http://localhost:xxxx/controller/view rather than just http://localhost:xxxx/.
-
Does this answer your question? Visual Studio ASP.NET MVC project: setting the start URLMichael Freidgeim– Michael Freidgeim2022-12-29 02:55:06 +00:00Commented Dec 29, 2022 at 2:55
2 Answers
To answer my own question it can be done like so:
Go to your project right click Properties then go to Web then change the Start Action's Start Url to http://{port}/{controller}/{view} then click the radio button Use Visual Studio Development Server and click radio button Specific Port to the port in your Start Url and leave Virtual Path to "/"
Comments
Using Visual Studio? I think you can change the default page to /Controller/View in properties window... I'm not sure if designer will let you (because it doesn't map to a file), but you may then be able to edit the project file directly to inject it...
Sometimes it removes the /controller/view for the default controller.