2007年10月22日

记录错误日志

摘要: using System.Diagnostics; protected void Application_Error(Object sender, EventArgs e) { string errMsg = ""; errMsg += "Application ErrorAn unexpected error has occurred in this Application... 阅读全文

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

javascript一个超COOL的模拟虚拟键盘--各大银行有用

摘要: softkeyboard:code by meixx 阅读全文

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

通用的加入收藏夹代码支持IE Firefox

摘要: 把Web之路加入收藏 阅读全文

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

QQ空间的图片切换效果(图片左边点击向上,图片右边点击向下)

摘要: http://www.cnblogs.com/Files/jueban/QQ(1).rar QQ空间的图片切换效果(图片左边点击向上,图片右边点击向下) 自己看看! 阅读全文

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

asp.net(c#)上传文件时检测文件类型方法小结

摘要: 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:05 jueban's space 阅读(3183) 评论(8) 推荐(0) 编辑

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) 编辑

导航