Unable to launch the IIS Express Web server, Failed to register URL, Access is denied

后端 未结 30 2248
刺人心
刺人心 2020-12-07 08:11

Some web projects are causing me problems while others work fine. I decided to focus on one of the problematic ones. I\'m using Visual Studio 2013 on Windows 7. I think I\'m

30条回答
  •  粉色の甜心
    2020-12-07 08:56

    In Visual Studio 2015:

    • Find your startup page in your project (eg: mypage.aspx) , and right click on it.
    • Click on Set as Start Page.
    • Right click on the project.
    • Click on Properties.
    • Click on the Web Tab on the left.
    • In Project URL, enter a different port, such as: http://localhost:1234/
    • In Start Action, select Specific Page: mypage.aspx or select Specific URL: http://localhost:1234/mypage.aspx?myparam=xxx

提交回复
热议问题