
23/01/2006, 11:19
|
| | Fecha de Ingreso: noviembre-2004
Mensajes: 371
Antigüedad: 20 años, 5 meses Puntos: 0 | |
los codigos de arriba eran 2 distintos, pero estoy investigando y esos codigos estan malos, tengo k trabajarlos dela siguiente manera
Set fso = CreateObject("Scripting.FileSystemObject")
Set textStreamObject = fso.OpenTextFile(Server.Mappath("cargaDestinatario s") & "\textfile.txt",2,true,0)
textStreamObject.WriteLine("howdy world")
textStreamObject.Close ' Make sure you close it or it won't write it!!
Set textStreamObject = Nothing
Set fso = Nothing
esto me crea un archivo de texto con el texto que aparece en el textStreamObject.WriteLine("howdy world") , necesito algo parecido, pero que me cargue un archivo de texto no que me lo cree... |