Return to Snippet

Revision: 7909
at August 20, 2008 12:29 by LondonWeb


Initial Code
<%
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
%>

Initial URL


Initial Description
mostrar resultados - simplified version show results

Initial Title
ASP Results from DB

Initial Tags
ASP

Initial Language
ASP