主题:  找不到类型或命名空间名称“Lable2

jiahui

职务:普通成员
等级:1
金币:0.0
发贴:5
#12005/4/13 19:32:02
c:\inetpub\wwwroot\WebApplication2\WebForm1.aspx.cs(39): 找不到类型或命名空间名称“Lable2”(是否缺少 using 指令或程序集引用?)



缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#22005/4/13 19:55:51
先申明变量



jiahui

职务:普通成员
等级:1
金币:0.0
发贴:5
#32005/4/13 20:35:14
还是不知道怎么解决呀
这是代码
请高手给修改一下




using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace WebApplication2
{
        
    /// <summary>
    /// WebForm1 的摘要说明。
    /// </summary>
    public class WebForm1 : System.Web.UI.Page
    {
        int Lable2;
    
        protected System.Web.UI.WebControls.Label Label1;
        protected System.Web.UI.WebControls.Button Button1;
        protected System.Web.UI.WebControls.Label Label2;
        protected System.Web.UI.WebControls.Button Button2;
    
void Page_Load(object src, System.EventArgs e)
        {
            
    
            Lable2.Text=""+DateTime.Now;
            Button2.Visible=false;
            // 在此处放置用户代码以初始化页面
        }
        void EnterBtn_Clickl(Object Src,System.EventArgs e)
        {
            Lable2.Text="看不清就算了。";
            Button1.Visible=false;
            Button2.Visible=true;
        }

        void EnterBtn_Click2(Object Src,System.EventArgs e)
        {
            Lable2.Text=""+DateTime.Now;
            Button2.Visible=false;
            Button1.Visible=true;
        }




        #region Web 窗体设计器生成的代码
        override protected void OnInit(EventArgs e)
        {
            //
            // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
            //
            InitializeComponent();
            base.OnInit(e);
        }
        
        /// <summary>
        /// 设计器支持所需的方法 - 不要使用代码编辑器修改
        /// 此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.Button1.Click += new System.EventHandler(this.EnterBtn_Clickl);
            this.Button2.Click += new System.EventHandler(this.EnterBtn_Click2);
            this.Load += new System.EventHandler(this.Page_Load);

        }
        #endregion
    }
}



缺缺

职务:管理员
等级:8
金币:41.0
发贴:9620
#42005/4/13 21:21:42
Label2还是Lable2?

Lable2是int变量