我的剃刀视图中有以下代码,可根据文本内容更改文本的颜色:-
string status = ViewData[vlr.LabTestID.ToString()].ToString();
if (status.ToUpper().StartsWith("Erro".ToUpper()))
{
<td style="color: #b30000">
@status
</td>
}
else if (status.ToUpper().StartsWith("With".ToUpper()))
{
<td style="color: #6b9e52">
@status
</td>}
else if (status.ToUpper().StartsWith("Below".ToUpper()))
{
<td style="color: #b30000">
@status
</td>}
else if (status.ToUpper().StartsWith("Above".ToUpper()))
{
<td style="color: #b30000">
@status
</td>}
else if (status.ToUpper().StartsWith("Cannot".ToUpper()))
{
<td style="color: #5c87b2">
@status
</td>}
}
但是有没有办法使用比上述更可靠和更简单的方法来执行相同的功能?BR