private void Page_Load(object sender, System.EventArgs e)
{
int Count=Int32.Parse(Application["Count"].ToString());
Application.Lock();
Application["Count"]=Count+1;
Application.UnLock();
int Count2=Int32.Parse(Application["Count"].ToString());
=================================
我在Global.asax文件中加入了
protected void Application_Start(Object sender, EventArgs e)
{
Application["Count"]=0;
}
但每交刷新会增加2。
且每次重新打开网站会,重新计数。
我已经把网站发上服务器了。