c# – 解析器错误消息:此处不允许使用’FCR2.abs’,因为它不扩
发布时间:2020-12-15 21:21:54 所属栏目:百科 来源:网络整理
导读:有谁知道如何解决这个问题? 这是我运行应用程序时的分析器错误: 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
有谁知道如何解决这个问题?
这是我运行应用程序时的分析器错误: 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 { } } 解决方法
确保您为代码的该部分使用相同的类名.
如果您使用abs,则需要将其重命名为: namespace FCR2 { public partial class abs : System.Web.UI.Page { protected void Page_Load(object sender,EventArgs e) { } } } (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |