asp.net注册、局部刷新用户名检测+验证码

Register.aspx

<head runat="server">
    <title>无标题页</title>
    <script language="javascript" type="text/javascript" >
    var request=false;
    try{
        request=new XMLHttpRequest();
    }catch(trymicrosoft){
        try{
        request=new ActiveXObject("Msxml2.XMLHTTP");
        }catch(othermicrosoft){
        try{
        request=new ActiveXObject("Microsoft.XMLHTTP");
        }catch(failed){
        request=false;
        }
        }
       
    }
    if(!request)
    alert("ERROR");
    //验证用户名是否已经存在
    function CheckUser()
    {
    var url="CheckUser.aspx?name=" + document.getElementById("TextBox1").value;
    request.open("get",url,true);
    request.onreadystatechange =Username;
    request.send(null);
    }
    function Username()
    {
    //4表示请求已完成
    if (request.readyState == 4)
    {
    if(request.status==200)
    {
   
    //获取服务段的响应文本
  
    var result = request.responseText;
    if(result=="true")
    {
        document.getElementById("Label1").innerHTML=document.getElementById("TextBox1").value+"已经存在";
    }
    else
    {
        document.getElementById("Label1").innerHTML=document.getElementById("TextBox1").value+"可以使用";
    }
    }
    }
    }
    //验证密码是否相同
    function CheckPwd()
    {
        var pwd1=document.getElementById("TextBox2").value;
        var pwd2=document.getElementById("TextBox3").value;
        if(pwd1!=pwd2)
        {
             document.getElementById("Label2").innerHTML="两次密码不相同";
             document.getElementById("TextBox2").innerText=" ";
             document.getElementById("TextBox3").innerText=" ";
        }
        else
        {
            document.getElementById("Label2").innerHTML="密码可以使用";
        }
    }
    //验证码
    function change()
    { 
         var imgNode = document.getElementById("vimg");  
         imgNode.src = "Handler.ashx?t=" + (new Date()).valueOf();  // 这里加个时间的参数是为了防止浏览器缓存的问题 
        
        
     }  
   
</script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="TextBox1" runat="server" onblur="CheckUser()"  ></asp:TextBox>
        <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
        <br />
       <%-- <input id="Button1" type="button" value="button" onclick="CheckUser()"/><br />--%>
        <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
        <asp:TextBox ID="TextBox3" runat="server" onblur="CheckPwd()" ></asp:TextBox>
        <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label></div>
        <img src="Handler.ashx" id="vimg" alt="验证码" />
        <input type="button" value="换一张图片" onclick="change()" /> 
        <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" />
    </form>
</body>
</html>

CheckUser.aspx.cs

public static readonly string conString = ConfigurationManager.ConnectionStrings["Report"].ConnectionString;
    protected void Page_Load(object sender, EventArgs e)
    {
        string  username=Request.QueryString["name"].ToString().Trim();
       // string  username="tang";
        if (username == checkuser(username).Trim())
        {
            Response.Write("true");
            Response.End();
        }
        else
        {
            Response.Write("false");
            Response.End();
        }
      

    }
    public string  checkuser(string name)
    {
      
        SqlConnection conn = new SqlConnection(conString);
        string sql = "Select * from GPUser where name=@Username";
        SqlCommand cmd = new SqlCommand();
        cmd.Parameters.AddWithValue("@Username", name);
        cmd.Connection = conn;
        cmd.CommandType = CommandType.Text ;
        cmd.CommandText = sql;
        conn.Open();
        SqlDataAdapter sda = new SqlDataAdapter(cmd);
        DataSet ds = new DataSet();
        sda.Fill(ds, "dt");
        DataTable dt = ds.Tables["dt"];
        string username1="";
        if (dt.Rows.Count != 0)
        {
           username1 = Convert.ToString(dt.Rows[0].ItemArray[0]);
        }
        return username1 ;
      
    }

Handler.ashx

<%@ WebHandler Language="C#" class="Handler" %>

using System;
using System.Web;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Web.SessionState;

public class Handler : IHttpHandler, IRequiresSessionState  // 要使用session必须实现该接口,记得要导入System.Web.SessionState命名空间
{
   
    public void ProcessRequest(HttpContext context)   
    {  
        string checkCode = GenCode(5);  // 产生5位随机字符      
        context.Session["Code"] = checkCode; //将字符串保存到Session中,以便需要时进行验证  
        System.Drawing.Bitmap image = new System.Drawing.Bitmap(70, 22); //图片大小   
        Graphics g = Graphics.FromImage(image);     
        try      
        {       
            //生成随机生成器          
            Random random = new Random();         
            //清空图片背景色         
             g.Clear(Color.White);     
            // 画图片的背景噪音线         
            int i;           
            for (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.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2F, true);   
            g.DrawString(checkCode, font, brush, 2, 2);        
            //画图片的前景噪音点         
            g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1);       
            System.IO.MemoryStream ms = new System.IO.MemoryStream();       
            image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);        
            context.Response.ClearContent();        
            context.Response.ContentType = "image/Gif";      
            context.Response.BinaryWrite(ms.ToArray());    
        }   
        finally       
        {         
            g.Dispose();     
            image.Dispose();  
        }   
    } 
            /// <summary>  
          /// 产生随机字符串 
          /// </summary> 
          /// <param name="num">随机出几个字符</param> 
          /// <returns>随机出的字符串</returns>  
          private string GenCode(int num) 
          {     
             string str = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
             // string str ="的一是在不了有和人这中大为上个国我以要他时来用们生到作地于出就分对成会可主发年动同工也能下过子说产种面而方后多定行学法所民得经十三之进着等部度家电力里如水化高自二理起小物现实加量都两体制机当使点从业本去把性好应开它合还因由其些然前外天政四日那社义事平形相全表间样与关各重新线内数正心反你明看原又么利比或但质气第向道命此变条只没结解问意建月公无系军很情者最立代想已通并提直题党程展五果料象员革位入常文总次品式活设及管特件长求老头基资边流路级少图山统接知较将组见计别她手角期根论运农指几九区强放决西被干做必战先回则任取据处队南给色光门即保治北造百规热领七海口东导器压志世金增争济阶油思术极交受联什认六共权收证改清己美再采转更单风切打白教速花带安场身车例真务具万每目至达走积示议声报斗完类八离华名确才科张信马节话米整空元况今集温传土许步群广石记需段研界拉林律叫且究观越织装影算低持音众书布复容儿须际商非验连断深难近矿千周委素技备半办青省列习响约支般史感劳便团往酸历市克何除消构府称太准精值号率族维划选标写存候毛亲快效斯院查江型眼王按格养易置派层片始却专状育厂京识适属圆包火住调满县局照参红细引听该铁价严";    
             // char[] chastr = str.ToCharArray();      
             // string[] source ={ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "#", "$", "%", "&", "@" }; 
              string code = "";     
              Random rd = new Random();   
              int i;      
              for (i = 0; i < num; i++)    
              {         
                 // code += source[rd.Next(0, source.Length)];      
                 code += str.Substring(rd.Next(0, str.Length), 1);   
              }    
              return code;
          }
    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
}

posted on 2011-05-06 13:29  缘来  阅读(617)  评论(0)    收藏  举报

导航