使用 Html.TextBoxFor 或 Html.EditorFor 将类似“hi person”的内容传递到文本框的值中
不幸的是,该值没有被 Html 编码。任何人都可以解释为什么会这样,它在 MVC4 中是否已修复。
我知道您可以执行类似 @Html.TextBox("Description", Server.HtmlDecode(Model.Description)) 的操作,但是是否有一个开箱即用的 Html Helper 实际上只是为您编码?
使用 Html.TextBoxFor 或 Html.EditorFor 将类似“hi person”的内容传递到文本框的值中
不幸的是,该值没有被 Html 编码。任何人都可以解释为什么会这样,它在 MVC4 中是否已修复。
我知道您可以执行类似 @Html.TextBox("Description", Server.HtmlDecode(Model.Description)) 的操作,但是是否有一个开箱即用的 Html Helper 实际上只是为您编码?