I have a webform (.aspx) that is not finding the codebehind (aspx.cs). I put a break point in the first line in the page load and it is not hitting it. I get all the html stuff on the page but none of the stuff I pull out of a database in the codebehind. Here is the top of the page:
<%@ Register TagPrefix="uc1" TagName="DuckCreekBanner" Src="DuckCreekBanner.ascx" %>
<%@ Page language="c#" Codebehind="TaskDetails.aspx.cs" AutoEventWireup="false" Inherits="WebbedFootOnline.TaskDetailsName" %>
<%@ Register TagPrefix="uc1" TagName="SideBar" Src="SideBar.ascx" %>
<%@ Register TagPrefix="uc1" TagName="TabControl" Src="TabControl.ascx" %>
TaskDetails
It worked yesterday and I am not getting any errors. Does anyone have any idea what is happening?