Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Oi gente!
Alguem sabe me dizer se seria possivel mostra um alerta na tela para algumas pessoas responsaveis em saber que existe clientes aguardando retorno de algum serviço ou duvida sobre algum equipamento da empresa???? Isso pode ocorrer????
ALGUEM PODE ME DAR ALGUMA IDEIA!!!!!!!
O comando que mostra a pagina com os clientes que estao aguardando retorno é este comando abaixo:
<%option explicit%><!--#include file="conexao.asp" --><!--#include file="sessao_verificar.asp" --><%Dim sql, rsAguardRetornosql = "SELECT * FROM VW_AGUARDANDORETORNO"Set rsAguardRetorno = DataConn.Execute(sql)%><html><head><title>SAC - Atendimento - Cliente Novo</title><link href="css/sac.css" rel="stylesheet" type="text/css"></head><body><br><table width="80%" border="0" align="center" cellpadding="0" cellspacing="0" class="tabela_borda"> <tr class="titulo"> <td width="38%">Clientes aguardando retorno</td> <td width="19%"> </td> <td width="20%"> </td> <td width="9%"> </td> <td width="14%"> </td> </tr> <tr class="subtitulo"> <td width="38%">Cliente</td> <td width="19%">Telefone</td> <td width="20%">Cidade</td> <td width="9%">UF</td> <td width="14%">Data</td> </tr> <% Dim cor1 : cor1 = "#DDDDDD" Dim cor2 : cor2 = "#FFFFFF" Dim cor : cor = cor2 %> <% While Not rsAguardRetorno.Eof %> <% if cor = cor1 then cor = cor2 else cor = cor1 end if %> <tr bgcolor="<%=cor%>"> <td width="38%"><a href="RetornoClientesConsultar.asp?CodRetorno=<%=rsAguardRetorno("CodRetorno")%>" class="linha"><%=rsAguardRetorno("Cliente")%></a></td> <td width="19%"><%=rsAguardRetorno("Telefone")%></td> <td width="20%"><%=rsAguardRetorno("Cidade")%></td> <td width="9%"><%=rsAguardRetorno("uf")%></td> <td width="14%"><%=rsAguardRetorno("Data")%></td> </tr> <% rsAguardRetorno.MoveNext %> <% Wend %></table><%rsAguardRetorno.CloseDataConn.Close%> </body></html>Obrigada,
Talita Jehle
Carregando comentários...