Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: ASPNET: 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).
Source Error:
|
解决方法:
.aspx 第一行配置信息Inherits="User" 应改为 Inherits="System.Web.UI.Page.User"
本文介绍了解决 ASP.NET 编译错误的具体步骤。针对因页面类定义不正确导致的CompilationError,提供了详细的错误信息及修改建议。指出在代码文件中定义的类需与'inherits'属性匹配并继承正确的基类。
1106

被折叠的 条评论
为什么被折叠?



