Mudar a cor da linha da tabela, sobe uma condição, alguém sabe?

Fala galera estou começando a aprender JAVA WEB agora, e a cada dia aprendo maiS aqui no GUJ, ai vai mais uma: :roll: :roll:

Como pinto uma linha de uma tabela sobe um determinada condição ex.:

<%out.print(temp.getString("Responsavel_Digitacao"));%> <%out.print(temp.getString("TecnicoResponsa"));%>
      </tr>  

pintar de vermelho, ser o Responsavel_Digitacao, for = MARIO DO NASCIMENTO DIAS

Vc poderia cria um sytile (CSS), por exemplo “linhaVermelha” e fazer o seguinte :

[code]
<tr class=’<%temp.getString(“Responsavel_Digitacao”).equals(“MARIO DO NASCIMENTO DIAS”) ?“linhaVermelha”:“linha”%>’>
<td >
<%out.print(temp.getString(“Responsavel_Digitacao”));%>
</td>
</tr>
<tr>
<td>
<%out.print(temp.getString(“TecnicoResponsa”));%>
</td>

</tr> [/code]

blz e como eu faço para fazer esse CSS tipo:

.teste{ font-family:Verdana, Arial, Helvetica, sans-serif; font-size:15px; color:black; text-align:left; }

Como eu colocaria acima, o atributo “linhaVermelha”, para depois chamar la embaixo, desculpa se estou viajando.

resumindo tudo:

<style>
.linhaVermelha
   background-color: red;
}
</style>

<tr class='<%temp.getString("Responsavel_Digitacao").equals("MARIO DO NASCIMENTO DIAS") ?"linhaVermelha":""%>'>  
   <td >  
      <%out.print(temp.getString("Responsavel_Digitacao"));%>  
   </td>  
</tr>  
<tr>  
   <td>  
      <%out.print(temp.getString("TecnicoResponsa"));%>  
   </td>  
</tr>    
.linhaVermelha{ background-color:red; }

Galera fiz dessa maneira e esta retornando o seguinte erro:

C:\Documents and Settings\BR0095211797\TESTE\build\generated\src\org\apache\jsp\lista_005ffinal03_jsp.java:198: not a statement
temp.getString(“Responsavel_Digitacao”).equals(“MARIO DO NASCIMENTO DIAS”) ?“linhaVermelha”:""
C:\Documents and Settings\BR0095211797\TESTE\build\generated\src\org\apache\jsp\lista_005ffinal03_jsp.java:198: ‘;’ expected
temp.getString(“Responsavel_Digitacao”).equals(“MARIO DO NASCIMENTO DIAS”) ?“linhaVermelha”:""
2 errors
C:\Documents and Settings\BR0095211797\TESTE\nbproject\build-impl.xml:372: The following error occurred while executing this line:
C:\Documents and Settings\BR0095211797\TESTE\nbproject\build-impl.xml:364: The following error occurred while executing this line:
C:\Documents and Settings\BR0095211797\TESTE\nbproject\build-impl.xml:149: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 0 seconds)

tenta ai:

<%= temp.getString("Responsavel_Digitacao").equals("MARIO DO NASCIMENTO DIAS") ?"linhaVermelha":"linha"; %>

mas ja avisando:
scriptlets é a pior forma possível de você fazer isso.
da uma estudada em jstl pra melhorar o codigo