When I created the project I’m trying to deploy I selected that I wanted to target .NET Framework 2.0. After deploying the project I try to brows to it and get and error page that shows:
<compilation debug='true'> <assemblies> <add assembly='System.Web.Entity, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089'/> <add assembly='System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35'/> <add assembly='System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089'/> </assemblies> </compilation>
One of the selling points of VS2008 is that you can develop for and deploy to server running .NET2.0 what Am I doing wrong?
You are referencing assemblies of the .NET Framework 3.5, are you using EntityDataSources??
Remove those 3.5 references…
You also need the AJAX Extensions (System.Web.Extensions) for .NET 2.0 on the server.