C# 绑定数据怎么让不同的提示显示不同的颜色
程序员文章站
2022-05-31 16:15:02
...
示例图片:
前台绑定数据我用的数Repearer
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="testss.aspx.cs" Inherits="testss" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Repeater ID="rptTest" runat="server">
<ItemTemplate>
<tr>
<td width="50" height="30" style='<%#GetColor(Eval("TSET")) %>'>
<%#Eval("TSET")%>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
<asp:Label ID="lblEmpty" Text="无记录.." runat="server" Visible='<%#bool.Parse((rptTest.Items.Count==0).ToString())%>'></asp:Label>
</FooterTemplate>
</asp:Repeater>
</div>
</form>
</body>
</html>
后台代码:
#region 文字背景色(Start)
public static string GetColor(object obj)
{
if (obj == DBNull.Value)
{
return string.Empty;
}
return GetColor(obj.ToString());
}
public static string GetColor(string val)
{
if (val == "测试1")
{
return "color:#FF0000";//红色
}
else if (val == "测试2")
{
return "color:#0000EE";//红色
}
else
{
return "color:#000000";//黑色
}
}
#endregion 文字背景色(End)
即可显示自己设置的字体颜色。
上一篇: 做梦还笑的那么大声
推荐阅读
-
C#在RichTextBox中显示不同颜色文字的方法
-
Excel 2010让不同区间的数字以不同的颜色及填充背景来显示
-
Excel2010自定义数据格式让数据以不同的形态进行显示
-
Excel2010使用突出显示单元格规则对数据进行不同颜色的区分
-
如何让echarts柱状图的每个柱子显示不同的颜色
-
Excel 2010让不同区间的数字以不同的颜色及填充背景来显示
-
我想根据数据库里存的每个人的不同职位值来显示对应include php文件要怎么实现
-
怎么将数据库里面内容以不同的颜色显示在页面下
-
Excel2010自定义数据格式让数据以不同的形态进行显示
-
C# 绑定数据怎么让不同的提示显示不同的颜色