Examples explaining Ajax mailbox and username uniqueness verification methods

小云云
Release: 2023-03-18 10:28:01
Original
1633 people have browsed it

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:


##

Copy after login

reg.ashx code:


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"]; List lstUser = 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 List GetUserList() { 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; } } }
Copy after login

Related recommendations:


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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!