Código ASP:
Ver originalSQLQuery = "select titulo, autor, editorial, genero, formato from libros order by titulo"
StrCxn = server.MapPath("../libros.mdb;")
set cxn=server.CreateObject("ADODB.Connection")
set RS=server.CreateObject("ADODB.Connection")
cxn.open StrCxn
RS.open SQLQuery, cxn
if Err=0 then
if RS.eof = false
for I=0 to 8
'desplegar la informacion
response.write RS("titulo").value
..
.
.
.
next
else
response.write Err.description
end if
RS.close
cxn.Close
eso seria la forma mas.... facil, sencilla, fuera de borda....
o utilizar una sola sentencia
Código ASP:
Ver originalSQLQuery = "select titulo, autor, editorial, genero, formato from libros order by titulo"
y usar un codigo similar a este que tienen
AQUI
por algo, muchos no les gusta la forma en que trabaja Dreamweaver... sorry