Compiler Error Message错误,常见错误!

来源:互联网 发布:守护线程的作用 python 编辑:程序博客网 时间:2024/05/16 09:55

 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:

 
Line 13: namespace QY.com.ADUnionLine 14: {Line 15:     public partial class User : System.Web.UI.PageLine 16:     {Line 17:         protected void Page_Load(object sender, EventArgs e)

 

解决方法:

.aspx 第一行配置信息Inherits="User" 应改为 Inherits="System.Web.UI.Page.User"

原创粉丝点击