gpt4 book ai didi

asp.net - 将图标添加到 Label 控件中的文本字段

转载 作者:行者123 更新时间:2023-12-01 11:57:57 26 4
gpt4 key购买 nike

我想知道是否有一种方法可以将图标添加到 asp.net 标签的文本中。

所以,类似

<asp:Label run="server"
Text= "Please see the "icon" below />

谢谢。

最佳答案

您不能使用 text属性(property)这样-Text字符串将以 " 结尾在 icon 之前.

但是,任何 HTML 标记都不会被转义,因此您可以使用 <img>标签。

<asp:Label run="server"
Text="Please see the <img src='icon.gif' /> below" />

来自 MSDN (标签.文本):

The Text property can include HTML. If it does, the HTML will be passed unchanged to the browser, where is might be interpreted as markup and not as text.

或者,您可以添加 asp:image到您的标记,或在两个 Label 之间放置一个 控制。

关于asp.net - 将图标添加到 Label 控件中的文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4381985/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com