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:literal中包含一个小于(和大于)的符号
显示类似的东西
Select <Download>
我试过用这个
<asp:Literal ID="LiteralDownload" runat="server" Text="Select < Download >"/>
但是 ASP.NET 页面不显示文本
任何想法/帮助?
瓦察
您应该将 [LiteraControl的 Mode 属性设置为PassThrough.
LiteraControl
PassThrough
默认为Transform: 解释为 html 并且不显示
Transform
ltlMetaHolder.Mode = LiteralMode.PassThrough
或根据 OP 在这种情况下的评论
ltlMetaHolder.Mode = LiteralMode.Encode