闪烁和着色 asp.net 标签控件

发布于 2024-10-16 00:10:15 字数 326 浏览 3 评论 0原文

我的网络表单上有一个 asp.net 标签控件:

对于这个标签,我从后面的代码设置文本属性:

lblOne.Text = "Number of student is: 86 and Number of teacher is: 7";

现在我想做两件事:

  1. 闪烁标签。
  2. 着色:“学生人数是:”- 红色“86”:- 蓝色

    “教师人数是:” - RED & 7:- 蓝色
    

我该如何做这些事情?

I have a asp.net label control on my webform:

for this label I am setting the text property from code behind:

lblOne.Text = "Number of student is: 86 and Number of teacher is: 7";

Now I want to do 2 things:

  1. Blinking the label.
  2. Coloring: "Number of student is:" -
    RED Color "86" :- BLUE

             "and Number of teacher is:" - RED & 7:- BLUE
    

How can I do these things?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁绊已千年 2024-10-23 00:10:15

您真的确定要让该文本闪烁吗, 标记因某种原因消失:-)

您可以设置 ForeColor 用于标签,但仅适用于完整标签。因此,您可以将该文本拆分为两个标签,一个蓝色,一个红色。

另一种解决方案是使用 Library 并自己设置 html:

Literal1.Text = String.Format("Number of student is: <span style='color:red'>{0}</style> and Number of teacher is: <span style='color:blue'>{1}</span>", student, teacher);

Are you really sure you want that text to blink, the <blink> tag disappeared for a reason :-)

You could set a ForeColor for a label, but only for the complete Label. So what you could do is split that text into two labels, one blue and one red.

A different solution would be to use a Literal and set the html yourself:

Literal1.Text = String.Format("Number of student is: <span style='color:red'>{0}</style> and Number of teacher is: <span style='color:blue'>{1}</span>", student, teacher);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文