I have an ASP page that attempts to execute the code listed below. When I try to load the page IE just sits there in it's "busy" state (flag waving, status bar barely incrementing) but nothing happens. I have to stop and start IIS before any additional ASP code will execute. I have let it sit for 15 minutes to see if it would produce an error but it does not.
I've ensured that the IUSR account for my machine has rights to the C: drive. The ASP files are loaded on my local machine.
Any ideas on what could be causing this???
<%
Dim FSO
Set FSO=Server.CreateObject "Scripting.FileSystemObject"
filedir = "C:\New Folder"
if fso.folderexists(filedir) = false then
fso.createfolder(filedir)
end if
%>
I've ensured that the IUSR account for my machine has rights to the C: drive. The ASP files are loaded on my local machine.
Any ideas on what could be causing this???
<%
Dim FSO
Set FSO=Server.CreateObject "Scripting.FileSystemObject"
filedir = "C:\New Folder"
if fso.folderexists(filedir) = false then
fso.createfolder(filedir)
end if
%>