1 public class ValidateCode 2 { 3 /// 4 /// 验证码的最大长度 5 /// 6 public int MaxLength 7 { 8 ...
分类:
Web程序 时间:
2014-10-08 11:52:05
阅读次数:
246
java实现生成简单图片验证码 源代码下载地址:http://www.zuidaima.com/share/1550463428840448.htm...
分类:
编程语言 时间:
2014-09-30 12:48:23
阅读次数:
181
1 ValidateCode.csusing System;using System.Drawing;using System.Drawing.Drawing2D;using System.Drawing.Imaging;using System.IO;namespace Common{ //...
分类:
Web程序 时间:
2014-08-27 10:43:57
阅读次数:
242
1 /// 2 /// 验证码类 3 /// 4 public class ValidateCode 5 { 6 /// 7 /// 验证码的最大长度 8 /// 9 publ...
分类:
其他好文 时间:
2014-08-13 18:05:37
阅读次数:
181
例一:在网站要目录下添加ValidateCode.aspx,路径自己定。ValidateCode.aspx:ValidateCode.aspx.cs:using
System;using System.Collections.Generic;using System.Web;using System...
分类:
其他好文 时间:
2014-05-27 01:03:47
阅读次数:
430
using System;using System.Web;using
System.Drawing;using System.Web.SessionState;public class ValidateCode :
IHttpHandler,IRequiresSessionState { p...
分类:
其他好文 时间:
2014-05-24 10:00:20
阅读次数:
247