我收到与母版页相关的解析错误

时间:2019-02-13 19:43:52

标签: c# asp.net visual-studio

我制作了一个母版页,并且出现此错误: 解析器错误 说明:在解析服务于此请求所需的资源期间发生错误。请查看以下特定的解析错误详细信息,并适当地修改您的源文件。

解析器错误消息:此处不允许使用'Hogwarts_School.accmaster',因为它没有扩展类'System.Web.UI.MasterPage'。

第1行:<%@主语言=“ C#” AutoEventWireup =“ true” CodeBehind =“ accmaster.master.cs” Inherits =“ Hogwarts_School.accmaster”%>

1 个答案:

答案 0 :(得分:1)

在您的accmaster.master.cs中,它应该看起来像这样:

public class accmaster: System.Web.UI.MasterPage
{
    // code goes here
}

“ System.Web.UI.MasterPage”文本指示accmaster扩展的类。