2007年10月22日

ASP.net 实现在线统计人数

摘要: 利用Application对象和Session对象可以统计当前在线用户数量. 注意: (1)在会话开始和结束时,一定要进行加锁和解锁操作。由于多个用户可以共享Application对象,因此加锁是必要的,这样可以保证在同一时刻只有一个客户可以修改和存取Application对象的属性。如果加锁后,迟迟不给开锁,会导致用户无法访问Application对象。我们可以使用对象的Unlock方法来... 阅读全文

posted @ 2007-10-22 14:03 jueban's space 阅读(365) 评论(0) 推荐(0) 编辑

asp.net 生成html静态页

摘要: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts... 阅读全文

posted @ 2007-10-22 14:00 jueban's space 阅读(227) 评论(0) 推荐(0) 编辑

asp.net XML操作类

摘要: public class XmlControl { protected string strXmlFile; protected XmlDocument objXmlDoc = new XmlDocument(); public XmlControl(string XmlFile) { // // TODO: 在这里加入建构函式的程序代码 // try { objXml... 阅读全文

posted @ 2007-10-22 13:56 jueban's space 阅读(438) 评论(0) 推荐(0) 编辑

ASp.NET 2.0中Page事件的执行顺序

摘要: Page 执行中将按照如下顺序激活事件: Page.PreInit Page.Init Page.InitComplite Page.PreLoad Page.Load Page.LoadComplete Page.PreRender Page.PreRenderComplete 如果页面从令一个页面继承,如BasePage:System.Web.UI.Page,在B... 阅读全文

posted @ 2007-10-22 13:54 jueban's space 阅读(177) 评论(0) 推荐(0) 编辑

防止一个用户重复登陆

摘要: string key = TextBox1.Text; //用户名文本框设为cache关键字 string uer = Convert.ToString(Cache[key]); //读取cache中用户相应的值 //判断cache中是否有用户的信息,如果没有相关的值,说明用户未登陆 if (uer == null || uer == String.Empty) { //定义cach... 阅读全文

posted @ 2007-10-22 13:52 jueban's space 阅读(220) 评论(0) 推荐(0) 编辑

导航