Hi,
What's wrong with this code? The FileExists method returns false, yet the file does exist and this works in a VB program running on the same server, but the asp page does not. Permissions are OK...
Thanks in advance, I've left out the rest of the VB Script code...
Dim fso
Dim myvar
Dim mystr
Set fso = server.CreateObject("Scripting.FileSystemObject"
mystr = "\\myserver\com\common\signatures\files\sig1.bmp"
myvar = (fso.FileExists(mystr))
Set fso = Nothing
Response.WRITE myvar Tom Davis
tdavis@sark.com
What's wrong with this code? The FileExists method returns false, yet the file does exist and this works in a VB program running on the same server, but the asp page does not. Permissions are OK...
Thanks in advance, I've left out the rest of the VB Script code...
Dim fso
Dim myvar
Dim mystr
Set fso = server.CreateObject("Scripting.FileSystemObject"
mystr = "\\myserver\com\common\signatures\files\sig1.bmp"
myvar = (fso.FileExists(mystr))
Set fso = Nothing
Response.WRITE myvar Tom Davis
tdavis@sark.com