超级菜鸟求asp.net验证码代码,一定要详细
超级菜鸟求asp.net验证码代码,一定要详细
  日期:2016-01-19 01:54:31 人气:2
  
  新建一个页面image.aspx,添加命名空间:
using System.Drawing.Imaging;
using System.IO;
  然后在Page_load事件拷入如下代码:
   //生成4位的验证码
   string tmp = RndNum(4);
   HttpCookie a = new HttpCookie('ImageV',tmp);   
   Response.Cookies.Add(a);
   this.V
      