необходимо записать в файл с помощью Stream. 'Create a Stream instance Dim objStream Set objStream = Server.CreateObject("ADODB.Stream") objStream.Open objStream.WriteText "Buy a copy of Designing Active Server Pages!!!" objStream.Position = 0 objStream.SaveToFile "F:\write.txt", adSaveCreateNotExists Выводит ошибку Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. На www.aspfaq.com пишут, что
Write your own adovbs.inc file, with only the handful of constants you need; Only define constants as you need them; Place the relevant constant/value pairs in a comment, and use the integer equivalent in the actual code; or Use < !--METADATA...-- > references in global.asa: < !--METADATA TYPE="TypeLib" NAME="Microsoft ActiveX Data Objects 2.7 Library" UUID="{EF53050B-882E-4776-B643-EDA472E8E3F2}" VERSION="2.7"-- > Версия ADO у меня 2.7 , в global.asa прописал что надо, файл заинклудил... Правда в файле adovbs.inc нет константы adSaveCreateNotExists...
Ответить
|