% set Conn = Server.CreateObject("ADODB.Connection") Conn.open CDSN query = "SELECT idIndicadorProfissional, nome, atividade, ddd, telefone, email FROM IndicadorProfissional ORDER BY nome" set RS = Conn.execute (query) %>
|
<%
if RS.EOF then
Response.write(" Não há Indicador Profissional disponível. ") else while (not RS.EOF) %>
<% end if wEnd end if %> |
|||||||||||||||||||