分析器错误消息: “webgroup.admin.index”不扩展类“System.Web.UI.Page”,因此此处不允许

 
解决方法:
检查Inherits的值(路径)是否存在,包括命名空间。(C#是对大小写敏感的语言)
出错的原因基本上是 Inherits="webgroup.admin.index 和 CodeBehind="index.aspx.cs" 不一致
原文地址:https://www.cnblogs.com/joeylee/p/3077367.html