I have to inherit an ASP.NET 1.1 website of company. The website's still running smoothly. I get a copy of it and then convert it to ASP.NET 2.0, and ... Visual Studio 2008 shows errors:
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 'POMan.Support'.
Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false" Codebehind="Default.aspx.vb" Inherits="POMan.Support"%>
Line 2: <head>
Line 3: <style type="text/css">
Source File: /Functions/Support/Default.aspx Line: 1
The truth is, there is no Default.aspx.vb in the folder, and there's no POMan.Support class/namespace
I don't know why the original web site still run. But I cannot get it run on .NET 2.0 Can you help me?