Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/12/2004, 14:55
flacoluis
 
Fecha de Ingreso: noviembre-2004
Ubicación: trelew - chubut
Mensajes: 134
Antigüedad: 20 años, 5 meses
Puntos: 0
como se llama el campo memo
rs("memo")
o
rs("loc_descrip")


esta linea esta mal
a = len(Rs("loc_descrip"))
If a <> 0 Then
Rw Rs("loc_descrip") & "<br><br>:::::::::"
End if

debe ser
a = len(Rs("loc_descrip"))
If a <> 0 Then
Response.write Rs("loc_descrip") & "<br><br>:::::::::"
End if