如何在asp:label控件中添加多个Text?

时间:2017-02-02 17:10:16

标签: c# html asp.net

我目前有一个asp标签,它从字符串文件中提取文本。我想在这个标签旁边添加一个红色*。我该怎么做呢?

<asp:Label ID="Label29" runat="server" Text="<%$ Resources:strings, sample_generalinformation %>"/> 

2 个答案:

答案 0 :(得分:0)

您可以执行以下操作。只需在标签标记的右侧添加span标记,其样式属性的值为color: red

像这样:

 <asp:Label ID="Label29" runat="server" Text="<%$ Resources:strings, sample_generalinformation %>"/><span style="color:red;">*</span>

答案 1 :(得分:0)

如果您希望*以及相同的文字应该有效:

<asp:Label ID="Label29" runat="server" Text="<%$ Resources:strings, sample_generalinformation %> <span style='color: red;'>*</span>"/>

如果你想要seperaret而不是另外一个选择:

 <asp:Label ID="Label29" runat="server" Text="<%$ Resources:strings, sample_generalinformation %>"/><span style="color:red;">*</span>