/ Published in: ASP
mostrar resultados - simplified version show results
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<% Set RS = Server.CreateObject("ADODB.Recordset") Dim SQL SQL="SELECT * FROM Tabela " RS.Open SQL, Connection %> <% While Not RS.EOF %> <div> <%=RS("c")%></div> <% RS.MOveNext Wend %>