Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Jow Xavier

[Resolvido] Verificar e exibir se estiver sem preenchimento

Recommended Posts

Boa tarde tenho uma table em html q exibe o registro do campo do meu banco de dados, gostaria de fazer q quando alguma linha ñ tiver registro a <td></td> exibisse com outra cor ...

 

while not tab.EOF
<table>
<td><%tab=("nome")%></td>
<td><%tab=("rg")%></td>
<td><%tab=("cpf")%></td>
<td><%tab=("endereco")%></td>
</table>
<%tab.MoveNext
  Wend%>

Supondo q algum registro algum campo estivesse sem preenchimento, como exibir <td></td> exibir com outra cor ???

Compartilhar este post


Link para o post
Compartilhar em outros sites

Tenta assim:

 

while not tab.EOF
<table>
<td <% If tab("nome")="" Then : Response.Write("bgcolor='red'") : End If %>><%=tab("nome")%></td>
<td <% If tab("rg")="" Then : Response.Write("bgcolor='red'") : End If %>><%=tab("rg")%></td>
<td <% If tab("cpf")="" Then : Response.Write("bgcolor='red'") : End If %>><%=tab("cpf")%></td>
<td <% If tab("endereco")="" Then : Response.Write("bgcolor='red'") : End If %>><%=tab("endereco")%></td>
</table>
<%tab.MoveNext
Wend %>

Obs.: Tabela sem

<tr></tr>
???? :blink:

 

at+

Compartilhar este post


Link para o post
Compartilhar em outros sites

Vixe é isso si mesmo detonou uhauhuahhaua ... etava usando um if em cada linha hauhuhauhauhauh abraçãooo

Compartilhar este post


Link para o post
Compartilhar em outros sites

Obs.: Tabela sem

CODE

<tr></tr>

????

 

at+

isso ae é pq antes eu tenho <table><tr></tr></table> entre<tr></tr> vou inserir um include da linhas apenas huhauhuha ...

Vai ficar assim:

<table><tr><!-- #include file="../includes/conteudo_tabela.asp"--></tr></table>
..

 

Valeu resolvido o meu problema ... abraçossss

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.