如何将HTML代码添加到Asp按钮文本属性

时间:2013-12-25 08:30:49

标签: html css

我正在尝试为按钮的文本添加符号,但这显示没有文字。什么是正确的方法?

符号是箭头 - here

<asp:button id="btnAdd" runat="server" class="next"/>

CSS:

.next
{
   content = &#10095;
   width:50px;
}

当我说Text='&#10095;'时,它会显示'?'符号

3 个答案:

答案 0 :(得分:2)

试试这个:

<asp:button id="btnAdd" runat="server" class="next" Text="&#10095;"/>

答案 1 :(得分:2)

最简单的方法是设置Text attribute of the asp:button

<asp:button Text="&#8594;" .../>

编辑:

您正在使用的实体无法渲染,请尝试以下方法:&#8594;

如果你真的需要一个css解决方案:

使用content:before伪选择器时,

:after只是一个有效的规则,请注意:您并未真正设置按钮的内容,而是添加了按钮后面的文字元素!此外,如果使用contentyou need to use unicode

.next:after{
   content: "\25BA";
}

http://css-tricks.com/css-content/

答案 2 :(得分:1)

<input type="submit" value="&#10137;">

ASP.NET

<asp:Button ID="btnLogin" Text="Login &#10137;" runat="server" />