允许在 MVC 输入中使用特定格式的电子邮件地址

发布于 2024-08-31 22:51:05 字数 651 浏览 8 评论 0原文

我在 MVC 中有一个页面,我想将电子邮件地址作为输入,其格式可以是:"Jone Davi" <[电子邮件受保护]>,“Ben Miller”<[电子邮件受保护]>, "Jane Ton" <[email protected]>

然后我想从中解析有效的电子邮件地址。但是点击提交按钮收到错误消息“从客户端检测到潜在危险的 Request.Form 值”

因此,有没有办法以上述格式输入电子邮件地址并绕过该安全错误具体页面。

提前致谢。

I have a page in MVC where i want to take the email adddress as the input which can be of format like:"Jone Davi" <[email protected]>, "Ben Miller" <[email protected]>, "Jane Ton" <[email protected]>,

Then from this I want to parse the valid emailaddress.But on click of the submit button getting error message" A potentially dangerous Request.Form value was detected from the client "

Thus is there any way to take the input of email address in above format and bypass the security error for that specific page.

Thanks in advance.

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

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

发布评论

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

评论(1

欢你一世 2024-09-07 22:51:05

您需要转义尖括号。请改用 <>

请查看这篇文章了解更多详细信息在 ASP.net MVC 中转义 HTML。

You need to escape the angle-brackets. Use < and > instead.

Check out this article for more details on escaping HTML in ASP.net MVC.

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