I have converted a VS 2005 web-site project to a web application project.
When I run the project in the debugger, using the VS development server everything works fine.
When I use a web deployment project to deploy it on my local IIS server the login page fails to load, with the error:
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'AdminMasterPage'.
Source Error:
Line 1: <%@ Master Language="C#" AutoEventWireup="true" Inherits="AdminMasterPage" Codebehind="MasterPage.master.cs" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
When I try and debug the project using the IIS web server then I receive lots of System.Exception errors trying to load all the user controls in my project and the master page.
Any ideas?
Thanks
John.