I run Visual studio 2015 as administrator, start a new project, ASP.NET application, Empty 4.5.2 and then just add a simple html page. When I try to launch using IIS Expres
Just right click on HtmlPage1.html
in solution explorer and click Set As Start Page
. After that run project again.
I think IIS is disabled in your system. Please follow the below steps:
I think this will solve your issue.
You could try to change the port which IIS Express is using by doing the following:
Right click you web project and click in properties
In the web menu, change the project url and specify a custom port, ie: 56000
You can make sure that no other processes are using the port you chose by running the following command:
netstat -na | find "your port number"
ie:
netstat -na | find "56000"
If the port is free, nothing will be outputted to the console.