ListView 验证电子邮件地址
我正在使用 ASP.NET ListView。用户将输入电子邮件地址,如下所示:
[email protected];[email protected];[email protected]
我需要验证电子邮件地址的格式是否正确。有没有什么快速方法可以验证这一点。请注意,我没有后台代码,如果可能的话,我喜欢在 JQuery 或 Javascript 中执行此操作。它是具有 233 条记录的 ListView,用户可以随时编辑任何记录。
I'm using ASP.NET ListView. Users will enter email address like shown below:
[email protected];[email protected];[email protected]
I need to validate that the email address is in correct format. is there any quick way of validating this. Please note, I don't have code behind, if possible I like to do this in JQuery or Javascript. it's ListView with 233 records where user can edit any record at any time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用正则表达式:
http://msdn.microsoft.com/en-us/ library/ms972966.aspx
以下是电子邮件地址的示例:
http://www.regexlib.com/REDetails.aspx?regexp_id=16
Use a regular expression:
http://msdn.microsoft.com/en-us/library/ms972966.aspx
Here is a example for email adresses:
http://www.regexlib.com/REDetails.aspx?regexp_id=16