ASP.NET 3.5 deployment issue under IIS5

asp.net-ajaxdeploymentiisiis-6

Having gone through the pain of converting an ASP.NET website project to a web application project, I am now have trouble deploying this to our live web server under IIS5.

Under my local development machine (running IIS7) the deployment is working fine. I publish the web application project in Visual Studio 2008 to a folder on my local machine and then create a new website under IIS7.

When I try to do the same (with the same deployed files) on our live server under IIS5 I get the following:

"Object reference not set to an instance of an object.

Line 1: <%@ Language="C#" MasterPageFile="~/MyMaster.master" AutoEventWireup="true" Inherits="MyMaster.index" Codebehind="index.aspx.cs" %> "

Anyone got any ideas??

Best Answer

.NET Framework 3.5 is not supported on Windows 2000.


UPDATE

If you are converting a Web Site Project to a Web Application Project make sure to check these pointers.