Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/12/2001, 10:57
BT4U
 
Fecha de Ingreso: diciembre-2001
Mensajes: 20
Antigüedad: 23 años, 4 meses
Puntos: 0
Re: Asp, exportar a excell

Hola, usa esto:

Set fs = Server.CreateObject("Scripting.FileSystemObje ct")
Set fichero = fs.CreateTextFile("nombrefichero"),True)
while not recordset.eof
fichero.write recordset(campo)
recordset.movenext()
wend
fichero.close
set fichero = nothing

Saludos, chao