Differences between IIS 6.0 / Windows 2003 and IIS 7.0 / Windows 2008 - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T06:48:50Zhttp://stackoverflow.com/feeds/question/659739http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/659739/differences-between-iis-6-0-windows-2003-and-iis-7-0-windows-20081Differences between IIS 6.0 / Windows 2003 and IIS 7.0 / Windows 2008Erick2009-03-18T19:24:18Z2009-03-22T23:14:27Z
<p>I am considering currently to get a VPS for some of my development test. I found some VPS at a cheap price, which suits me as it's only going to be used as a sandbox. </p>
<p>So far I know it is possible to install .Net 3.5 on the windows 2003 without problems, if I am correct it will be also possible to use IIS6 for all my development including asp.net mvc.</p>
<p>I am looking here if there is anything that would prevent me from using IIS6. I looked on google and apparently the main thing about IIS 7 is the modular design for plugins. This shouldn't be too much of a problem as most of my devs will be for personnal use.</p>
http://stackoverflow.com/questions/659739/differences-between-iis-6-0-windows-2003-and-iis-7-0-windows-2008/659747#6597470Answer by LuckyLindy for Differences between IIS 6.0 / Windows 2003 and IIS 7.0 / Windows 2008LuckyLindy2009-03-18T19:27:01Z2009-03-18T19:27:01Z<p>IIS7 will provide faster services, but IIS6 should be able to do everything you need (unless you need to run PHP or something of the sort on IIS). </p>
http://stackoverflow.com/questions/659739/differences-between-iis-6-0-windows-2003-and-iis-7-0-windows-2008/659762#6597621Answer by Chris K for Differences between IIS 6.0 / Windows 2003 and IIS 7.0 / Windows 2008Chris K2009-03-18T19:30:53Z2009-03-18T19:30:53Z<p>(PHP on IIS will run fine with IIS6)</p>
<p>Our devs are doing all their development against Win2k3 / IIS6 servers with .NET 3.5 and have not encountered any issues that would have been fixed with IIS7. Which is probably good since I've yet to stand up a 2k8 server.</p>
http://stackoverflow.com/questions/659739/differences-between-iis-6-0-windows-2003-and-iis-7-0-windows-2008/671776#6717760Answer by Mark Brackett for Differences between IIS 6.0 / Windows 2003 and IIS 7.0 / Windows 2008Mark Brackett2009-03-22T23:14:27Z2009-03-22T23:14:27Z<p>For devs, I think the main thing IIS7 adds is the integrated managed pipeline that allows you to write .NET code for IIS instead of an ISAPI filter.</p>
<p>Shared configs, FastCGI, caching improvements, etc. I think of more as admin features. Useful, but won't really affect your dev time.</p>