Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Asp --> Jnlp (File Creation)
Message
De
22/06/2003 19:52:24
 
 
À
19/06/2003 15:06:13
David Brunelle
Université de Sherbrooke
Sherbrooke, Québec, Canada
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00800394
Message ID:
00802769
Vues:
26
Hi David,

To create the file and read it on the server:
Function ReadAllTextFile
   Const ForReading = 1, ForWriting = 2
   Dim fso, f
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set f = fso.OpenTextFile("c:\testfile.txt", ForWriting, True)
   f.Write "Hello world!"
   Set f = fso.OpenTextFile("c:\testfile.txt", ForReading)
   ReadAllTextFile =   f.ReadAll
End Function
Is this what you meant?

Kind Regards,
Tarran Walker
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform