允许在 MVC 输入中使用特定格式的电子邮件地址
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要转义尖括号。请改用
<
和>
。请查看这篇文章了解更多详细信息在 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.