请参阅我的global.asax:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
using DataLayer;
using NiceFileExplorer.Classes;
using System.IO;
using System.Text;
using System.Data;
using System.Web.Hosting;
namespace NiceFileExplorer
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
Application["OnlineUsers"] = 0;
}
protected void Session_Start(object sender, EventArgs e)
{
Application.Lock();
OnlineUsers.InsertRow(
Session.SessionID,
DateTime.Now, //Session Start Time
DBNull.Value, //Session End Time
true);
//OnlineUsers Is A Table In MS SQL SERVER 2008
//InsertRow Is A StoredProcedure Of OnlineUsers Table Like Below :
// ALTER Procedure [dbo].[sp_OnlineUsers_Insert]
// @Session_ID nvarchar(300),
// @Session_Start datetime,
// @Session_End datetime = NULL,
// @Online bit
//As
//Begin
// Insert Into OnlineUsers
// ([Session_ID],[Session_Start],[Session_End],[Online])
// Values
// (@Session_ID,@Session_Start,@Session_End,@Online)
// Declare @ReferenceID int
// Select @ReferenceID = @@IDENTITY
// Return @ReferenceID
//End
Application["OnlineUsers"] = (int)Application["OnlineUsers"] + 1;
Application.UnLock();
}
protected void Session_End(object sender, EventArgs e)
{
Application.Lock();
OnlineUsers.UpdateRow_Some_Fields_By_SessionID(
Session.SessionID,
DateTime.Now,
false);
//UpdateRow_Some_Fields_By_SessionID Is A StoredProcedure Of OnlineUsers Table Like Below :
// ALTER Procedure [dbo].[sp_OnlineUsers_Update_Some_Fields_By_SessionID]
// @Session_ID nvarchar(300),
// @Session_End datetime,
// @Online bit
//As
//Begin
// Update OnlineUsers
// Set
// [Session_End] = @Session_End,
// [Online] = @Online
// Where
// [Session_ID] = @Session_ID
//End
Application["OnlineUsers"] = (int)Application["OnlineUsers"] - 1;
Application.UnLock();
}
protected void Application_End(object sender, EventArgs e)
{
}
}
}
我必须在我的项目中显示用于显示OnlineUsers的标签!
Application["OnlineUsers"].ToString();
OnlineUsers.Count_Users().ToString();
//Count_Users Is A StoredProcedure Of OnlineUsers Like Below :
//ALTER Procedure [dbo].[sp_OnlineUsers_Count]
// As
// Begin
// Select
// [Session_ID],
// [Session_Start],
// [Session_End],
// [Online]
// From OnlineUsers
// Where
// [Online] = 1
// Declare @Count int
// Select @Count = @@ROWCOUNT
// Return @Count
// End
SomeTimes Lable 1显示我们:5
但是Lable 2显示了我们:255
我对他们做错了什么?
为什么他们之间有很大的不同?
修改
我在web.config中的sessionState是这样的:
<sessionState mode="InProc" cookieless="false" timeout="1" />
提前致谢
答案 0 :(得分:2)
很可能你的OnlineUsers表中有大量用户从未被清理过。
Session_End不是一个非常可靠的事件,并且不会100%运行。例如,如果应用程序意外停止,则不会为每个打开的会话运行Session_End。然后,您将获得一个卡在OnlineUsers中的用户列表,这些用户永远不会被清理干净。应用程序[“OnlineUsers”]当然也不会被清除,但是如果你的应用程序正在重新启动,那么它会被设置回0,所以你不会注意到那里的巨大差异。
答案 1 :(得分:2)
Session_End
仅在会话超时时触发,这就是计数不匹配的原因。请尝试使用Session.IsNewSession
来关闭Session_End
逻辑。