leila_karimi
Member
من قبلا هم این سوال را کردم اما به جواب نرسیدم چون برام ضروریه مجبور شدم دوباره تاپیک بزنم
من می خوام تعداد افراد online در سایتم و در یک textbox نشون بدم.
این کد را در global.asax نوشتم ولی هر دفعه که سایت را باز می کنم این مقدار یکی بیشتر شده یعنی در پایان session این متغیر کم نمیشه.
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
Application["intUserOnline"] = 0;
}
void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown
}
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
}
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
Application.Lock();
Application["intUserOnline"] = (int)Application["intUserOnline"] + 1;
Application.UnLock();
}
void Session_End(object sender, EventArgs e)
{
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised.
Application.Lock();
Application["intUserOnline"] = (int)Application["intUserOnline"] - 1;
Application.UnLock();
}
</script>
من می خوام تعداد افراد online در سایتم و در یک textbox نشون بدم.
این کد را در global.asax نوشتم ولی هر دفعه که سایت را باز می کنم این مقدار یکی بیشتر شده یعنی در پایان session این متغیر کم نمیشه.
<%@ Application Language="C#" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
Application["intUserOnline"] = 0;
}
void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown
}
void Application_Error(object sender, EventArgs e)
{
// Code that runs when an unhandled error occurs
}
void Session_Start(object sender, EventArgs e)
{
// Code that runs when a new session is started
Application.Lock();
Application["intUserOnline"] = (int)Application["intUserOnline"] + 1;
Application.UnLock();
}
void Session_End(object sender, EventArgs e)
{
// Code that runs when a session ends.
// Note: The Session_End event is raised only when the sessionstate mode
// is set to InProc in the Web.config file. If session mode is set to StateServer
// or SQLServer, the event is not raised.
Application.Lock();
Application["intUserOnline"] = (int)Application["intUserOnline"] - 1;
Application.UnLock();
}
</script>