|
|
| Testimonials and
Reviews |
<% Set rstest = Server.CreateObject("ADODB.Recordset")
sql= "SELECT * FROM testimonials ORDER BY ID"
rstest.Open sql,conn,3,3 %>
<% do while not rstest.eof %>
<%= rstest("quote") %>
<%= rstest("name") %>
<% rstest.movenext
loop %>
<% rstest.Close
set rstest = nothing %>
|
|
|
|