<body>
<%
var fso = new ActiveXObject("Scripting.FileSystemObject");
var filelist = fso.GetFolder("\\\\devamfmapps\\pdf");
...
The error is: System.IO.DirectoryNotFoundException: Exception from
HRESULT: 0x800A004C (CTL_E_PATHNOTFOUND)
It's been a challenge to find a difference between the two websites, any
suggestions on what I could check?
Not directly related but if you are really using ASP.NET, it would be better
to use .NET classes rather than to still use Scripting.FileSystemObject (see
the System.IO namespace and in particular
http://msdn.microsoft.com/en-us/library/system.io.directoryinfo(VS.80).aspx).
--
Patrice
"seannakasone" <snak...@flex.com> a écrit dans le message de groupe de
discussion :
Pine.CYG.4.58.09...@ctfanxnfba.unjnvvnaryrpgevp.arg...
It turned out to be the web.config.
I removed <identity impersonate="true"/> and that fixed it.