C# – IIS7.0 to IIS6.0

.net-3.5c#-3.0iis-6iis-7web.config

So after months of work I load the project on the clients computers after months of them assuring me they run windows server 2008.

It's not is 2003 and so IIS6.0.

Does anyone have an easy way to downgrade my web.config to IIS6.0?

currently I get Parser Error Message: Unrecognized attribute 'type'.

sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture

Best Answer

Is it possible to upgrade their machine to the latest .NET 3.5 site? Because a IIS 7.0 web.config can run on IIS 6.0 with out any changes, you just need to have .NET 3.5 running on the IIS 6 site. However if your whole application is compiled against .NET 3.5, the upgrade of the framework is a requirement, unless you want to rewrite your whole app for .NET 2.0.