Para que os quede más claro, hago lo siguiente:
==
strSQL = "SELECT nottitulo,notfec,notautor FROM noticias"
strSQL2 = "SELECT dnotnot,dnotparrafo from detalle_noticia where
notid=1 order by dnotparrafo"
Set objRS = oConn.Execute(strSQL)
set objRS2 = oConn.Execute(strSQL2)
while (not objRS.Eof)
Response.Write("<h2><font color=red> " & objRS("nottitulo")
& "</font></h2>" & objRS("notfec") & "<br><br>")
while(not objRS2.Eof)
Response.Write("<p>" & objRS2 ("dnotnot") & "</p>")
objRS2.MoveNext
wend
objRS.MoveNext
wend
==
A veces funciona, y a veces no, con lo que supongo que esta operación
no se puede hacer, pero entonces como podria hacer algo similar???
haciendo 2 conexiones por separado??
Gracias!!
Leer las respuestas