The code copy is as follows:
<%
'******************************************************************
'Please keep this statement information when forwarding, this statement will not affect your speed!
'******************************************************************
'******************************************************************
'@author:Noodles
'@realname:Sue In-lu
'@email:[email protected]
'@QQ:55547082
'@Homepage:http://www.ksdn.net
'@Copyright Statement:
'Not-profit groups or individuals can use it for free.
'******************************************************************
'******************************************************************
'Class name: files
'Class function: implements file reading and writing functions, and uses adodb.stream to read and write files on hosts that do not support fso.
'******************************************************************
classfiles
privateadSaveCreateOverWrite' can overwrite existing files when creating files.
privateadSaveCreateNotExist'If the file does not exist when saving the file, you can create the file.
'******************************************************************
'Event Name: Class_Initialize()
'Event condition: This event is generated when the class is created
'Event content: Assign value to private variables
'Event parameters passed: None
'******************************************************************
subClass_Initialize()
adSaveCreateOverWrite=2
adSaveCreateNotExist=1