Using scripting under IIS5.1 for WinXP pro
Hello every body,
I have problem that I can not use Scripting.FileSystemObject in ASP page. just a simple code like this:
<%
Set fso = CreateObject("Scripting.FileSystemObject")
Set a = fso.CreateTextFile("c:\testfile.txt", True)
a.WriteLine("This is a test.")
a.Close
%>
This code it run OK in VB6 application.
I'm sure My IIS is runing, because I can connect to mdb file.
Please let me know why?
many thanks
|