asp.net验证码的简单制作

发布时间:2022-04-16 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了asp.net验证码的简单制作脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

实际上关于asp.net验证码制作文章已经很多很多了,但是今天还是要和大家继续分享,亲,可以综合几篇实例,编写出适用于自己网站的ASP.NET验证码,大概也就两大部分:

先建立一个asp.net窗体ValidateCode.aspx;不写任何东西。直接在后台ValidateCode.aspx.cs中写如下代码:

    PRotected void Page_Load(object sender, Eventargs e)
    {      
      string validateCode = CreateValidateCode();//生成验证码 
      BITmap bitmap = new Bitmap(imgWidth,imgHeight);//生成Bitmap图像 
      DisturbBitmap(bitmap); //图像背景 
      DrewValidateCode(bitmap,validateCode);//绘制验证码图像 
      bitmap.Save(Response.OutputStream,ImageFormat.Gif);//保存图像,等待输出 

    }

    private int codeLen = 4;//验证码长度 
    private int fineness = 85;//图片清晰度 
    private int imgWidth = 48;//图片度 
    private int imgHeight = 24;//图片高度 
    private string fontFamily = "Times New roman";//字体名称 
    private int fontSize = 14;//字体大小 
    //private int fontStyle = 0;//字体样式 
    private int pOSX = 0;//绘制起始坐标X 
    private int posY = 0;//绘制坐标Y 
    private string CreateValidateCode() //生成验证码 
    {
      string validateCode = "";
      Random random = new Random();// 随机数对象 
      for (int i = 0; i < codeLen; i++)//循环生成每位数值 
      {
        int n = random.Next(10);//数字 
        validateCode += n.ToString();
      }
      Session["vcode"] = validateCode;//保存验证码 这Session是在前台调用的。
      return validateCode;// 返回验证码 
    }

    private void DisturbBitmap(Bitmap bitmap)//图像背景 
    {
      Random random = new Random();//通过随机数生成 
      for (int i = 0; i < bitmap.Width; i++)//通过循环嵌套,逐个像素点生成 
      {
        for (int j = 0; j < bitmap.Height; j++)
        {
          if (random.Next(90) <= this.fineness)
            bitmap.SetPixel(i, j, Color.LightGray);
        }
      }
    }
    private void DrewValidateCode(Bitmap bitmap, string validateCode)//绘制验证码图像 
    {
      Graphics g = Graphics.FromImage(bitmap);//获取绘制器对象 
      Font font = new Font(fontFamily, fontSize, FontStyle.Bold);//设置绘制字体 
      g.DrawString(validateCode, font, brushes.Black, posX, posY);//绘制验证码图像 
    } 

在Login.aspx窗体页面中实现如下图功能:

LOGin.aspx窗体前台:

//这个函数是在点击验证码图片就会更换验证码
//可以使用微软自带jqury.js 下面jquery-1.4.1.min.js版本之上的。或者在jquery官网上下载就可以。
 <script src="styles/jquery-1.4.1.min.js" tyPE="text/javascript"></script>
     function f_refreshtype() {
       VAR Image1 = document.getElementByIdx_x_x_x("img");
       if (Image1 != null) {
         Image1.src = Image1.src + "&#63;";
       }
     }
---<img src="ValidateCode.aspx" id="img" onclick="f_refreshtype()" width="50px"/>//调用函数,实现更换验证码

后台代码:点击登录验证用户是否输入正确。&nbsp;

  string usercode = txtcode.Text.Trim();
      if (usercode == Session["vcode"].ToString())//Session["vcode"]
      {
  }

其他代码就是跟其他一样。

以上就是跟大家分享的关于生成ASP.NET验证码的过程,希望大家可以学以致用。

脚本宝典总结

以上是脚本宝典为你收集整理的asp.net验证码的简单制作全部内容,希望文章能够帮你解决asp.net验证码的简单制作所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: