0x01 在线用户类,我的用户唯一性由ID和类型识别(因为在不同的表里) public class UserIdentity : IEqualityComparer<UserIdentity> { internal UserIdentity() { } public UserIdentity(int userId, int userType) { this.UserID = userId; this.UserType = userType; } public int UserID { get;…
ASP.NET 计时器 http://www.cnblogs.com/dudu/archive/2011/10/17/2215321.html http://www.cnblogs.com/wisdomqq/archive/2012/03/29/2417723.html 用 ASP.NET MVC 实现基于 XMLHttpRequest long polling(长轮询) 的 Comet 之前在“反向Ajax,第1部分:Comet介绍”(英文版)文章中学习了“基于 Multipa…