时间:2021-05-28
废话不多说了,直接给大家贴代码了,具体代码如下所示:
reg.ashx代码:
using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace WebT1.Ti.html2{ /// <summary> /// reg 的摘要说明 /// </summary> public class reg : IHttpHandler { public void ProcessRequest(HttpContext context) { if (context.Request["email"] != null) { string strEmail = context.Request["email"]; List<UserModel> 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 { /// <summary> /// 模拟已注册用户数据 /// </summary> public static List<UserModel> GetUserList() { var list = new List<UserModel>(); 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; } }}总结
以上所述是小编给大家介绍的Ajax邮箱、用户名唯一性验证实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
企业邮箱是以企业域名为后缀的电子邮箱,域名具有唯一性。由用户名、@、域名三部分组成。例如:pony@xinnet.com 这就是典型的企业邮箱。在市场活动中,企
软件开发不能修改用户名是因为用户名都要求唯一性,理论上也不存在用户名经常变化的可能,所以说修改用户名,就是个伪需求。 软件开发是根据用户要求建造出软件系统或者
本文实例为大家分享了JS验证用户名是否存在的具体代码,供大家参考,具体内容如下直接上代码:reg_ajax.htmlAjax请求servlet实现用户名是否存在
本文实例为大家介绍了ajax验证用户名和密码的具体代码,供大家参考,具体内容如下1.ajax主体部分varxmlrequest;functioncreateXM
本文实例为大家分享了AJAX实现注册验证用户名的具体代码,供大家参考,具体内容如下功能说明当用户在注册页面输入用户名并且鼠标焦点离开输入框时,到数据表中去验证该