Ajax判断用户是否存在(post方法)

1、以下是Register.aspx页面的代码,主要是通过Xmlhttp来向UserIsExist.aspx页面Post要检查的用户名过去。      

< form  id =Form1  method =post  runat ="server" >
    
< input  id =aa  size =66 >   form >
2、在UserIsExist.aspx的Page_Load中加入下面代码
  string username=Server.UrlDecode(Request.Form["username"].ToString());
    if(User.IsExist(username)==true)
    {
     Response.Write("对不起,你的用户名已被注册过了.");
    }
    else
    {
     Response.Write("恭喜您,此用户名还未被使用,你可以继续使用!");
    }

你可能感兴趣的:(Ajax)