Yes: I'm having a bit of a geekend this week. I decided to build out a dev box in a VPC of a Windows 2003 Server with the ASP.NET AJAX libraries and futures.
For fun ;)
Upon setting up the ASP.NET AJAX documentation, I got the most helpful Parser Error Message:
Unrecognized attribute 'type'.
.. followed by specifics relating to the web.config file for the site.
Fortunately, this is trivial: by default, Windows 2003 Server configures ASP.NET 1.1 instead of ASP.NET 2.0 as the default version, and you get the error running a 2.0 site atop a 1.1 verwsion.
Changing to 2.0 solved the problem; here are the steps:
- Open IIS
- Right-click on the default web site and click 'properties'.
- Click on the ASP.NET tab.
- Select ASP.NET 2.0 as the default version.
Re-render the page and the error should go away.