页面缓存怎么这样子
protected void Page_Load(object sender, EventArgs e){
Application["hello"] = "欢迎学习APPLI对象";
this.TextBox1.Text = this.Application["hello"].ToString();
this.Label1.Text = this.Application["hello"].ToString();
this.Label2.Text = this.Session.SessionID.ToString();
}
我先前的代码如上,IE上的结果是我想要的结果,我把代码改成如下:
protected void Page_Load(object sender, EventArgs e)
{
//Application["hello"] = "欢迎学习APPLI对象";
//this.TextBox1.Text = this.Application["hello"].ToString();
//this.Label1.Text = this.Application["hello"].ToString();
//this.Label2.Text = this.Session.SessionID.ToString();
}
里面的代码全部注释掉,结果输出一样的结果,我问了一下高人,这是为何,回答说是页面缓存 , 难道页面缓存是为了干错误的事情吗.