摘要: *项目名称:具有良好体验度的Web注册系统*作者:草履虫*联系:caolvchong@gmail.com*时间:2007-6-29*起因和版权说明: 1.蓝色理想上有位会员发布了个类似的系统,提问说验证码不支持firefox的刷新,于是萌生念头做一个.本系统外观(按钮取色等)借鉴了该系统,但细节实现原理并不相同(该文地址:http://bbs.blueidea.com/thread-276132... 阅读全文
posted @ 2008-03-11 17:31 dodo-yufan 阅读(676) 评论(1) 推荐(1) 编辑
摘要: 1.WAITFOR --WAITFOR--例 等待1 小时2 分零3 秒后才执行SELECT 语句waitfor delay '01:02:03'select * from employee--例 等到晚上11 点零8 分后才执行SELECT 语句waitfor time '23:08:00'select * from employee2.查看sqlserver版本 select serve... 阅读全文
posted @ 2008-03-11 17:29 dodo-yufan 阅读(610) 评论(0) 推荐(1) 编辑
摘要: 验证码生成文件:validate.aspx.cs using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebContro... 阅读全文
posted @ 2008-03-11 17:26 dodo-yufan 阅读(1905) 评论(0) 推荐(1) 编辑
摘要: 注册用户页面代码如下 CheckUser.aspx:asp.net页面代码如下:CheckUser.aspx.CS: using *.*;public partial class CheckUser : System.Web.UI.Page...{ protected void Page_Load(object sender, EventArgs e) ...{ ... 阅读全文
posted @ 2008-03-11 17:25 dodo-yufan 阅读(4947) 评论(10) 推荐(1) 编辑
摘要: 一提到Ashx文件,我们就会想到http handler以及图片加载(在之前我们一般使用ASPX或者Webservice去做),一般做法如下: Handler.ashx:using System;using System.IO;using System.Web;public class Handler : IHttpHandler { public bool IsReusable { get {... 阅读全文
posted @ 2008-03-11 17:22 dodo-yufan 阅读(73167) 评论(6) 推荐(3) 编辑