You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
401 B

<%@ Application Language="C#" %>
<%@ Import Namespace="System.Collections.Generic" %>
<%@ Import Namespace="ASPNETAJAXWeb.AjaxChat" %>
<script runat="server">
/// <summary>
/// 保存登录用户的列表
/// </summary>
public static List<UserInfo> Users = new List<UserInfo>();
void Application_Start(object sender, EventArgs e)
{ ///登录用户列表初始化
Users.Clear();
}