Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASP.NET MVC 剃须刀视图引擎是否默认编码 HTML?
还是我们必须使用htmlhelpersfor html 对数据进行编码。
htmlhelpers
是的,它确实。用来@Html.Raw(...)打破这种行为。
@Html.Raw(...)
或者使用HttpUtility.HtmlDecode
string value1 = "<html>"; // <html> string value2 = HttpUtility.HtmlDecode(value1); // <html>