Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/06/2005, 18:28
orharo2003
 
Fecha de Ingreso: abril-2004
Ubicación: México D.F.
Mensajes: 1.724
Antigüedad: 21 años, 1 mes
Puntos: 4
1.- Determinamos el total de campos,

total_registros=ob_rs.fields.count

2.- Un bucle para recorrer

for nombre_campo=0 to total_registros-1
response.write ob_rs(nombre_campo).name
next

Espero te sirva.