Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on this ASP.NET website project, when I build (Ctrl-F5) Visual studio 2008 runs the website using the ASP.NET development server on port 4730. Is there a way to make it run it on port 80?

share|improve this question
Following link will be helpful for sure withasp.net/specific-port-on-local-host – Rupinder Oct 13 '12 at 18:14

6 Answers

Project properties > Web > select Specific Port and fill in 80

share|improve this answer

I beleive this is done in the project settings, you can define the parameters to Cassini or have it run on IIS.

share|improve this answer

You can also use command line options to start the webserver on any port you want. Of course , the condition is that the port is available.

http://azamsharp.com/Posts/22_Programmatically_Starting_Web_Server_to_Execute_WatiN_Tests.aspx

share|improve this answer

Right click on the project from the Solution Explorer and choose Properties then specify the port "80" and the virtual path e.g:"/mayApp"

share|improve this answer

Here are the steps.

1.) If you already have IIS on your workstation then chances are high that it must be running on port 80. If so is the case with you, then you must first release the port 80 by stopping IIS website service. Refer to the screenshot below.

alt text

2.) Now you need to goto Properties' window of your website project in Visual Studio. And set the settings as it look in the screenshot below. And you're done! Hit F5 and see it's running on port 80.

alt text

Thanks.

share|improve this answer
would it work on windows vista home basic, it has a limited version of IIS – jaminator Jun 7 '11 at 5:35

Select the website in your solution explorer and open the properties window. Change Use dynamic ports to false and change the port number to 80. You might have to click away from the site after you change the bool to false and then click back to have the port field become available.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.