Okay I'm completely stuck on this compilation error. It's a Web Site (not web app), .NET 2.0.
I have a file in this directory: welcome_teams
file name: default.aspx
Page Declaration:
<%@ Page Language="C#" MasterPageFile="~/masters/Site.master"
AutoEventWireup="true" CodeFile="default.aspx.cs"
Inherits="welcome_teams_default" %>`
Code Behind
public partial class welcome_teams_default : System.Web.UI.Page
And I keep receiving this error: Make sure that the class defined in this code file matches the 'inherits' attribute
I've tried deleting the file, and adding it again as "new item" and no matter what, the error persists.
Any ideas?
Thanks!