在頁面上顯示當前在線人數session
效果:spa
一、Global.asax文件:server
<%@ Application Language="C#" %>
<%@ Import Namespace="System.Xml" %>
<script runat="server">
void Application_Start(object sender, EventArgs e)
{
// 在應用程序啓動時運行的代碼
//載入配置文檔
XmlDocument AppConfig = new XmlDocument();
AppConfig.Load(HttpContext.Current.Server.MapPath("~/AppConfig.xml"));
//讀取配置信息
XmlNode xnList = AppConfig.GetElementsByTagName("dblist")[0];
XmlElement xeDb1 = (XmlElement)xnList.ChildNodes[0];
XmlElement xeDb2 = (XmlElement)xnList.ChildNodes[1];
Application["db1user"] = xeDb1.GetAttribute("user");
Application["db1source"] = xeDb1.GetAttribute("source");
Application["db2user"] = xeDb2.GetAttribute("user");
Application["db2source"] = xeDb2.GetAttribute("source");
Application["count"] = 0;
}
void Application_End(object sender, EventArgs e)
{
//在應用程序關閉時運行的代碼
}
void Application_Error(object sender, EventArgs e)
{
//在出現未處理的錯誤時運行的代碼
}
void Session_Start(object sender, EventArgs e)
{
//在新會話啓動時運行的代碼
Application["count"] = Convert.ToInt32(Application["count"])+1;
}
void Session_End(object sender, EventArgs e)
{
//在會話結束時運行的代碼。
// 注意: 只有在 Web.config 文件中的 sessionstate 模式設置爲
// InProc 時,纔會引起 Session_End 事件。若是會話模式
//設置爲 StateServer 或 SQLServer,則不會引起該事件。
Application["count"] = Convert.ToInt32(Application["count"]) - 1;
}
</scriptxml
-----------------------blog
二、顯示頁面:事件
前臺:ip
<span id="Span1" runat="server" class="bottom"> </span>文檔
後臺:io
Span1.InnerHtml = "當前在線" + Application["count"].ToString() + "人";class