MVC Html.EditorFor 不会接受标记

发布于 2024-10-16 19:27:55 字数 282 浏览 1 评论 0原文

伙计们, 我的一个文本框需要接受用户输入 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 技术交流群。

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

发布评论

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

评论(1

∝单色的世界 2024-10-23 19:27:55

您是否尝试过将 [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.

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