ASP.Net 在按钮文本中插入特殊字符
是否可以在 ASP 按钮控件上显示商标等特殊字符?如果是这样,我该怎么做
Is it possible to display a special character like trademark on an ASP button control? if so, how do I do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在按钮的文本属性中使用
©
= © 和™
= ™ 等 html 代码。有关这些代码的更详细列表:http://www.ascii.cl/htmlcodes.htm
示例:
You can use html codes such as
©
= © and™
= ™ etc in the text property of your button.For a more detailed list of these codes: http://www.ascii.cl/htmlcodes.htm
example:
使用字符映射(按“开始”,运行并键入“charmap”,然后输入)选择特殊字符,复制到剪贴板并粘贴到控件的文本属性中。
Use character map (press start, run and type charmap then enter) select the special character, copy to the clipboard and paste into the text property of the control.