【问题标题】:Parser Error Message: 'FCR2.abs' is not allowed here because it does not extend class 'System.Web.UI.Page'解析器错误消息:此处不允许“FCR2.abs”,因为它不扩展类“System.Web.UI.Page”
【发布时间】:2011-08-08 12:03:53
【问题描述】:

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

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

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 {
    }
}

【问题讨论】:

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


    【解决方案1】:

    确保您对代码的那部分使用相同的类名。

    如果你使用abs,你需要这样重命名:

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

    【讨论】:

      【解决方案2】:

      不确定你在这里尝试什么

      public partial class abs {
          }
      

      这被定义为部分类,并且不继承 Page(就像 WebForm1 发生的那样)

      您的继承人指出Inherits="FCR2.abs" 我认为应该是WebForm1 而不是abs

      尝试右键单击Convert to Web Application,这应该会为您生成正确的设计器文件

      【讨论】:

      • 谢谢大家。不能投票,因为我没有任何声誉:)
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-02-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多