更改表背景里面

时间:2016-04-08 07:45:21

标签: asp.net vb.net razor html-table background-color

是否可以在td if..else条件内编辑表的类(background-color)。

 @<table class='widgetContentText'>
       <tr>
            <th>..</th>
            <th></th>
            <th>..</th>
        </tr>
        <tr>
    @If (item.QueueLength(medium) > threshold.Queuethreshold1(medium)) Then
        @If (item.QueueLength(medium) > threshold.Queuethreshold2(medium)) Then
            @<td class='effect' style="background-color:#FF3333" align="center">
                @item.QueueLength(medium)
            </td>
                Else
            @<td class='effect' style="background-color:#FFA500" align="center">
                @item.QueueLength(medium)
            </td>
                End If
            Else
        @<td align="center">
            @item.QueueLength(medium)
        </td>
            End If

0 个答案:

没有答案