| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 711 人关注过本帖
标题:[求助]计网站点击次数,出现问题。
取消只看楼主 加入收藏
booo
Rank: 1
等 级:新手上路
帖 子:189
专家分:0
注 册:2006-6-24
收藏
 问题点数:0 回复次数:1 
[求助]计网站点击次数,出现问题。

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。
且每次重新打开网站会,重新计数。
我已经把网站发上服务器了。

搜索更多相关主题的帖子: 计网站 
2006-06-25 07:42
booo
Rank: 1
等 级:新手上路
帖 子:189
专家分:0
注 册:2006-6-24
收藏
得分:0 

在Begin_Request中计数,加入以下
int Count=Int32.Parse(Application["Count"].ToString());
Application.Lock();
Application["Count"]=Count+1;
Application.UnLock();
仍然是一样,每次计数加2。
------------------------
111111111111111111111111111111111111111111111
但当我在Global.asax文件中将
protected void Application_Start(Object sender, EventArgs e)
{
Application["Count"]=1;

}
在Begin_Request中计数,加入以下
int Count=Int32.Parse(Application["Count"].ToString());
Application.Lock();
Application["Count"]=Count;
Application.UnLock();
计请求数正常,是不是Application[]=有自我累加功能。


网上赚钱到这里,无金钱投入的第二职业。 http://j./mimo/sale.aspx http://a./jgh8041/
2006-06-27 07:08
快速回复:[求助]计网站点击次数,出现问题。
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023635 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved