分析器错误消息:此处不允许使用'FCR2.abs',因为它不扩展类'System.Web.UI.Page'

时间:2011-08-08 12:03:54

标签: c# .net asp.net visual-studio-2010

有人知道如何解决这个问题吗?

这是我运行应用程序时的分析器错误:

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: 'FCR2.abs' is not allowed here because it does not extend class 'System.Web.UI.Page'.

Source Error: 

Line 1:  <%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="404.aspx.cs" Inherits="FCR2.abs" %>
Line 2:  <asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
Line 3:  </asp:Content>


Source File: /404.aspx    Line: 1 `enter code here`

这是我的404.aspx文件:

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="404.aspx.cs" Inherits="FCR2.abs" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <h2>Page Not Found</h1>
    <p>You have come here by mistake or the page you are trying to view is no longer availible.</p>
    <p>Go back to the <a href="Default.aspx">Home Page</a></p>
</asp:Content>

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

这是404.aspx.cs代码:

namespace FCR2
{
    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}

这是404.aspx.designer.cs代码:

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated. 
// </auto-generated>
//------------------------------------------------------------------------------

namespace FCR2 {


    public partial class abs {
    }
}

2 个答案:

答案 0 :(得分:1)

确保您为代码的这一部分使用相同的类名。

如果您使用的是abs,则需要将其重命名为:

namespace FCR2 
{     
   public partial class abs : System.Web.UI.Page     
   {         
      protected void Page_Load(object sender, EventArgs e)              {          
      }     
   } 
} 

答案 1 :(得分:0)

不确定你在这里尝试了什么

public partial class abs {
    }

这被定义为部分类,而不是对页面的理解(正如WebForm1所发生的那样)

并且您的继承指向Inherits="FCR2.abs",我认为应该是WebForm1而不是abs

请尝试右键单击Convert to Web Application,然后为您生成适当的设计器文件