dlconnor
10-11-2002, 10:23 PM
I have been trying to resolve this for over a week and am getting nowhere. I am pretty sure it is a function of my machine configuration, permissions, or something local but I have tried changing everything I can think of and no movement.
I can get and FSO object and read drive properties, but eveytime I try to get, create, or take any actions on a folder or a file the page starts to load and stalls, hanging IIS. All I can do is restart IIS.
It's not the ASP code. I can run the same code on the ISP server and it works fine. And, I tried using the MS samples and they won't run on my machine.
I run XP Pro on a Dell Inspiron 8100 512K 1.2 MHz machine.
MY example - this code will hang IIS:
<html><head></head>
<body>
<%
dim fs, rs
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set rs = fs.GetFile(Server.MapPath("default.asp"))
%>
This file was last modified on: <%response.write(rs.DateLastModified)
Set rs = Nothing
Set fs = Nothing
%>
</body></html>
Any help will be appreciated.
I can get and FSO object and read drive properties, but eveytime I try to get, create, or take any actions on a folder or a file the page starts to load and stalls, hanging IIS. All I can do is restart IIS.
It's not the ASP code. I can run the same code on the ISP server and it works fine. And, I tried using the MS samples and they won't run on my machine.
I run XP Pro on a Dell Inspiron 8100 512K 1.2 MHz machine.
MY example - this code will hang IIS:
<html><head></head>
<body>
<%
dim fs, rs
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set rs = fs.GetFile(Server.MapPath("default.asp"))
%>
This file was last modified on: <%response.write(rs.DateLastModified)
Set rs = Nothing
Set fs = Nothing
%>
</body></html>
Any help will be appreciated.