How to create an ASP.NET development server on port 80?

I am working on this ASP.NET website project when I create (Ctrl-F5). Visual studio 2008 launches a website using an ASP.NET development server on port 4730. Is there a way to get it to run it on port 80?

+3
source share
6 answers

Project Properties> Web> select Specific Port and fill 80

+9
source

I believe that this is done in the project settings, you can define parameters for Cassini or run it in IIS.

+2
source

"", "80" , : "/mayApp"

+1

.

1.) IIS , , 80, . , 80, - IIS. . .

alt text http://ruchitsurati.net/files/iis_stop.png

2.) - Visual Studio. , . ! F5 , 80.

alt text http://ruchitsurati.net/files/port80_prop.png

.

+1
source

Select a website in your solution browser and open the properties window. Change Use dynamic ports for false and change the port number to 80. You may have to click from the site after you change the bool to false, and then click back to access the port field.

0
source

Source: https://habr.com/ru/post/1708837/


All Articles