MVC Html.EditorFor 不会接受标记
伙计们, 我的一个文本框需要接受用户输入 HTML:
<%= Html.EditorFor(m => m.Setting, new { model = Model })%>
当我将纯文本放入框中时,它会正确填充我的设置属性。
当我将以下内容放入文本框中时,我什么也没得到:
<b>Text<b>
只要提供有关如何调试此内容的线索,我们将不胜感激。非常感谢。
Guys,
One of my textboxes needs to accept a user inputting HTML:
<%= Html.EditorFor(m => m.Setting, new { model = Model })%>
When I put plain text into the box it correctly populates my Setting property.
When I put the following into the textbox I get nothing:
<b>Text<b>
Just a clue as to how to even debug this would be appreciated. Many thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过将
[ValidateInput(false)]
放在您的操作之上?我敢打赌这与输入验证以及您发布 HTML 标记的事实有关。
Have you tried putting
[ValidateInput(false)]
on top of your action?I bet it's sth related to input validation and the fact that you're posting HTML markup.