如何在服务器端验证邮件

发布于 2024-12-07 22:16:00 字数 44 浏览 0 评论 0原文

如何在服务器端验证电子邮件。我知道如何在客户端执行此操作,但是服务器端呢?

How to validate Email in server side . I know how to do that in client side but what about the server side?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素手挽清风 2024-12-14 22:16:00

你可以试试这个。

 String mail = "[email protected]";
 string expression = @"^[a-z][a-z|0-9|]*([_][a-z|0-9]+)*([.][a-z|" +@"0-9]+([_][a-z|0-9]+)*)?@[a-z][a-z|0-9|]*\.([a-z]" +@"[a-z|0-9]*(\.[a-z][a-z|0-9]*)?)$";

            Match match = Regex.Match(mail, expression, RegexOptions.IgnoreCase);
            if (match.Success)
                Response.Write("VALID EMAIL");
                else
                 Response.Write("INVALID EMAIL");
            return;

You can try this.

 String mail = "[email protected]";
 string expression = @"^[a-z][a-z|0-9|]*([_][a-z|0-9]+)*([.][a-z|" +@"0-9]+([_][a-z|0-9]+)*)?@[a-z][a-z|0-9|]*\.([a-z]" +@"[a-z|0-9]*(\.[a-z][a-z|0-9]*)?)$";

            Match match = Regex.Match(mail, expression, RegexOptions.IgnoreCase);
            if (match.Success)
                Response.Write("VALID EMAIL");
                else
                 Response.Write("INVALID EMAIL");
            return;
辞别 2024-12-14 22:16:00

您可以使用 RegularExpressionValidator

<asp:RegularExpressionValidator
        id="regEmail"
        ControlToValidate="txtEmail"
        Text="(Invalid email)"
        ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
        Runat="server" /> 

就常规而言要使用的表达方式,只需选择一种适合您需要的表达方式即可。

You could use a RegularExpressionValidator:

<asp:RegularExpressionValidator
        id="regEmail"
        ControlToValidate="txtEmail"
        Text="(Invalid email)"
        ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"
        Runat="server" /> 

As far as the regular expression to use, just pick one that suits your needs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文