//第一步:新建一个(*.aspx|*.html)Index.aspx页面 添加jquery 1 2 3 440 41 第二步:新建一个处理界面Index.ashx检测用户名是否存在 5 6 31 32 33 34
1 public void ProcessRequest(HttpContext context) 2 { 3 context.Response.ContentType = "text/html"; 4 string userName = context.Request.QueryString["userName"].Trim().ToString(); 5 DataTable dt = SqlHelper.ExecuteDataTable("select * from dbo.T_Login where UseName=@UseName", new SqlParameter("@UseName", SqlDbType.NVarChar) { Value = userName }); 6 //判断表不能为空 7 DataRow dr = null; 8 if (dt != null && dt.Rows.Count > 0) 9 { dr = dt.Rows[0];10 if (userName ==dr["UseName"].ToString())11 {12 context.Response.Write("用户名已经存在!");13 }14 else15 {16 context.Response.Write("您可以使用此用户名!");17 }18 }19 else20 {21 context.Response.Write("您可以使用此用户名!");22 }23 }