Hello Gurus,
I have a class and I have a function/method with 4 parameters. first 3 are input and the last one is output.
I am creating a file at "C:\" based on the input parameters and writing the records to the file.
I tested this class from a
VB project and the file is created successfully.
Now I created a DLL using the Class and I am using this DLL in an ASP. I pass 3 input parameters and one output parameter variable. What I get is an error ( which I did not get when the class was run in the
VB project) like Path/File Access Error (Error75). Can any of you guys see why I am getting this error when I try to execute the DLL from ASP but works fine in
VB project when used as a class??
Code:
Dim fso
Dim txtfile
Dim ts
Set fso = CreateObject("Scripting.FileSystemObject")
Const forreading = 1, forwriting = 2, forappending = 3
If fso.FileExists(cfilname) Then
Kill cfilname
End If
fso.CreateTextFile cfilname
Set txtfile = fso.GetFile(cfilname)
Set ts = txtfile.OpenAsTextStream(forwriting, 0)
strrec = '1212121'
ts.WriteLine strrec
strrec = '2323231'
ts.WriteLine strrec
ts.close