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://开发者_JS百科localhost:xxxx/
.
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 "/"
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.
精彩评论