|
|
|
Junior Member
      
участник
Last Login: 24.03.2006 9:23
Сообщ.: 16,
Visits: 177
|
|
| Как с помощью ASP сделать запись в файл.
|
|
|
|
|
Supreme Being
      
администратор
Last Login: 13.11.2007 13:41
Сообщ.: 4 421,
Visits: 49 251
|
|
Примерно так:
Set fso = CreateObject("Scripting.FileSystemObject")
Set act = fso.CreateTextFile(Server.MapPath("file.txt"), true)
act.WriteLine "This is a text"
act.Close
|
|
|
|