Reputation: 6892
When debugging my current solution, it always output to mylocalhost:port/default.aspx. How to I force it to output to another path like mylocalhost:port/Default/default.aspx?
Upvotes: 0
Views: 339
Reputation: 1755
right click on your project select properties (or press F4) and you can change port number, and virtual path like \default
Upvotes: 2
Reputation: 34846
You need to change it in your web application's settings (right click project and choose Settings
from menu or Alt + Enter), like this:
Upvotes: 0