vs2003转vs2005奇怪的问题
编译错误说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。
编译器错误信息: ASPNET: 请确保此代码文件中定义的类与“inherits”属性匹配,并且该类扩展的基类(例如 Page 或 UserControl)是正确的。
源错误:
行 1: using System;
行 2: using System.Collections;
行 3: using System.ComponentModel;
源文件: d:\itsystem\usershow.aspx.cs 行: 1
--------------------编程问答-------------------- public partial class _Default : System.Web.UI.Page
后台类是这样 --------------------编程问答-------------------- 照你这样改了
说明: 在编译向该请求提供服务所需资源的过程中出现错误。请检查下列特定错误详细信息并适当地修改源代码。
编译器错误信息: CS0102: 类型“itsystem.usershow”已经包含“Label2”的定义
源错误:
行 21: public partial class usershow : System.Web.UI.Page
行 22: {
行 23: protected System.Web.UI.WebControls.Label Label2;
行 24: protected System.Web.UI.WebControls.Label Label3;
行 25: protected System.Web.UI.WebControls.Button Button1;
源文件: d:\itsystem\usershow.aspx.cs 行: 23 --------------------编程问答-------------------- protected System.Web.UI.WebControls.Label Label2;
行 24: protected System.Web.UI.WebControls.Label Label3;
行 25: protected System.Web.UI.WebControls.Button Button1;
把这几行去掉就行了 --------------------编程问答-------------------- --------------------编程问答-------------------- Click the link to solve your problem.Good luck!
补充:.NET技术 , ASP.NET