Visual-studio – Using IIS Server instead of IIS Express in Visual Studio 2015

asp.netiisvisual studio

How can we configure our already developed ASP.Net website to use IIS Server instead of using IIS Express in VS2015?

IIS Express is the default server in Visual Studio 2015. My website runs fine with ASP.NET web Development server in Visual studio 2012 but when i run it in VS2015 , it does not loads the css and images .

So, i want to run it with IIS Server and not IIS Express in VS2015. Can anyone help me out ?

Best Answer

Project Properties -> Web -> Servers -> Change IIS Express to Local IIS -> Check Apply server settings to all users -> then Project URL to http://localhost/Example (your project)

Then build your project.