<%@ Page Language =“C#”AutoEventWireup =“true”CodeFile =“”Inherits =“”%>

时间:2014-06-12 10:40:39

标签: asp.net

我正在尝试运行我的应用程序,它给了我错误:

Make sure that the class defined in this code file matches the 'inherits' attribute, and 
that it extends the correct base class (e.g. Page or UserControl).

请告诉我在此标记中使用此inherits参数?

1 个答案:

答案 0 :(得分:0)

看起来您缺少CodeFileBaseClass属性,该属性应该指向您的基类。

<%@ Page language="c#" Inherits="University.AspNet.Index" CodeFile="Index.aspx.cs" CodeFileBaseClass="XXXXXX" %>
  • CodeFileBaseClass 指定页面的基类及其关联的代码隐藏类的路径。此属性是可选的,但在使用时,还必须存在 CodeFile 属性。