Click here to Skip to main content
15,889,723 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Do i always need IIS server to develop a web application in ASP.NET 2.0 ?
Posted

1 solution

IIS is not required when in development mode in ASP.NET 2 using VS 2005 coz it has its own ASP.NET Development Server. ASP.NET creates a port of its own (the port number ranges from 1 to 65535 randomly, as long as its available!).
You may also save a web application anywhere on your PC while development, and still debugging would be possible.
When publishing the site, you would need to deploy it on an IIS 6 Web Server, which is available as a download for free. While publishing, you would need to save the web application @ \inetpub\wwwroot folder.
But for ASP.NET 1.1,1.0, you would surely require IIS.

As a matter of fact, you may also run ASP.NET on Apache, check out this link


http://weblogs.asp.net/israelio/archive/2005/09/11/424852.aspx
 
Share this answer
 
Comments
Manfred Rudolf Bihy 1-Jan-11 12:16pm    
Good call! 5+

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900