Using VS2008
I've been working with this (legacy) application for a year now, then last Friday, when trying to debug it, I get this 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 'FIPS._Default'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="FIPS._Default" %>
Line 2:
Line 3: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
I underdstand I could simply change "CodeBehind" to "CodeFile", I've read Could not load type 'site._Default', CodeFile vs CodeBehind and @ Page
The problem is that we do use TSF and I am the only one with this situation, Why would I have to modify the whole project?
Please help me figure this out. What could have caused this error? How can I fix it?
EDIT
<%@ Page Language="C#" MasterPageFile="~/Admin/Admin.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="FIPS.Web.Admin.Default" Title="FIPS" %>
That is supposed to be the guilty line, but the issue might not even be there; this project was working fine one day and then the next, kaputz! No changes have been applied to the code or computer, BUT automated updates out of my control might have been applied.