Slash

习惯在追逐的过程中不断去完善自己;当你不再去追逐,你自我完善的脚步也就停滞下来了。

导航

用户登录验证码代码(参考网友)

事先申明:以下代码是在参考网友blog修改而成,其中将所得到验证码字符串validatestr以Session使用,用于登录页面提交验证。

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Easybuy
{
    
/// <summary>
    
/// validatecode 的摘要说明。
    
/// </summary>

    public class validatecode : System.Web.UI.Page
    
{
    
        
private void Page_Load(object sender, System.EventArgs e)
        
{
            
// 在此处放置用户代码以初始化页面
            this.GenerateImage(MakeString());
        }


        
private string MakeString()
        
{
            
string validatestr="";
            
char ch;
            Random rdom
=new Random();
            
int n;

            
for(int i=0;i<4;i++)
            
{
                n
=rdom.Next();
                
if(n%2==0)
                    ch
=(char)('0'+(n%10));
                
else
                    ch
=(char)('A'+(n%26));
                validatestr 
+=ch.ToString();
            }


            Session[
"ValidateCode"]=validatestr;
            
return validatestr;
        }


        
private void GenerateImage(string checkCode)
        
{
            Bitmap image
=new Bitmap(checkCode.Length*18,30);
            Graphics g
= Graphics.FromImage(image);

            
try
            
{
                
//生成随机生成器
                Random random = new Random();

                
//清空图片背景色
                g.Clear(Color.White);

                
//画图片的背景噪音线
                for(int i=0; i<25; i++)
                
{
                    
int x1 = random.Next(image.Width);
                    
int x2 = random.Next(image.Width);
                    
int y1 = random.Next(image.Height);
                    
int y2 = random.Next(image.Height);

                    g.DrawLine(
new Pen(Color.Silver), x1, y1, x2, y2);
                }


                Font font 
= new System.Drawing.Font("Arial"12, (System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic));
                System.Drawing.Drawing2D.LinearGradientBrush brush 
= new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(00, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2ftrue);
                g.DrawString(checkCode, font, brush, 
22);

                
//画图片的前景噪音点
                for(int i=0; i<100; i++)
                
{
                    
int x = random.Next(image.Width);
                    
int y = random.Next(image.Height);

                    image.SetPixel(x, y, Color.FromArgb(random.Next()));
                }


                
//画图片的边框线
                g.DrawRectangle(new Pen(Color.Silver), 00, image.Width - 1, image.Height - 1);

                System.IO.MemoryStream ms 
= new System.IO.MemoryStream();
                image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
                Response.ClearContent();
                Response.ContentType 
= "image/Gif";
                Response.BinaryWrite(ms.ToArray());
            }

            
finally
            
{
                g.Dispose();
                image.Dispose();
            }

        }


        
Web 窗体设计器生成的代码
    }

}

posted on 2006-03-24 01:13  Slash  阅读(2536)  评论(0编辑  收藏  举报