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.
我认为我有以下代码
<%: "bla bla %>" %>
问题是,字符串中的“%>”被识别为结束标记。如何使其被视为普通字符串而不是结束标签?
温迪
或者,您可以拆分 C# 字符串:<%: "bla bla %" + ">" %>.
<%: "bla bla %" + ">" %>
或者,您可以使用 C# 转义语法:<%: "bla bla \u0025>" %>.
<%: "bla bla \u0025>" %>
找到一个快速修复如下:
<%= Html.Raw(HttpUtility.HtmlDecode("bla bla %>")) %>
如果有解决这个问题的内置方法会很棒。