我想在html属性中连接文本。有没有办法在没有JavaScript编码的情况下连接html代码中的文本?我正在使用asp .net。我的代码:
<asp:ListItem Value="1" Text="<%$ Resources: LocalizedText, LastSession%>">
</asp:ListItem>
我只想将字符"<"
和">"
放在Text属性的开头和结尾处。像这样:
<asp:ListItem Value="1" Text="<" + "<%$ Resources: LocalizedText, LastSession%>"> + ">"
</asp:ListItem>
感谢所有!!