How much do you know about Ajax email and username verification? This article mainly introduces the example code of Ajax mailbox and user name uniqueness verification. Friends who need it can refer to it. I hope it can help everyone.
Without further ado, I will post the code directly for you. The specific code is as follows:
##
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebT1.Ti.html2 { ////// reg 的摘要说明 /// public class reg : IHttpHandler { public void ProcessRequest(HttpContext context) { if (context.Request["email"] != null) { string strEmail = context.Request["email"]; ListlstUser = DataService.GetUserList(); var v = lstUser.Where(p => p.Email == strEmail); int iCount = 0; if (v.Count() > 0) { iCount = 1; } context.Response.ContentType = "text/plain"; context.Response.Write(iCount.ToString()); } } public bool IsReusable { get { return false; } } } public class DataService { /// /// 模拟已注册用户数据 /// public static ListGetUserList() { var list = new List (); list.Add(new UserModel() { Email = "t1@demo.com" }); list.Add(new UserModel() { Email = "t2@demo.com" }); list.Add(new UserModel() { Email = "t3@demo.com" }); list.Add(new UserModel() { Email = "t4@demo.com" }); list.Add(new UserModel() { Email = "t5@demo.com" }); return list; } } public class UserModel { public string Email { get; set; } } }
php regular expression verification email address case
php+jquery ajax email address non-refresh verification example_PHP tutorial
AJAX user name verification_PHP tutorial
The above is the detailed content of Examples explaining Ajax mailbox and username uniqueness verification methods. For more information, please follow other related articles on the PHP Chinese website!