Click to See Complete Forum and Search --> : Open a folder with a link?
rtown
08-27-2010, 09:28 AM
Is it possible to open a folder with a link? I could specify the folder with:
<%
Dim fs,fo
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Set fo=fs.GetFolder("c:\test")
set fo=nothing
set fs=nothing
%>
But how do I call it to open with a link? Im not sure how to put it all together. :)
yamaharuss
08-27-2010, 04:14 PM
What exactly do you mean by "open" it?
rtown
08-27-2010, 04:24 PM
What exactly do you mean by "open" it?
windows shell explorer.
yamaharuss
08-27-2010, 04:58 PM
You want your server side script to open the client-side Windows Explorer? Not gonna happen, maybe with ActiveX.
rtown
08-27-2010, 05:23 PM
You want your server side script to open the client-side Windows Explorer? Not gonna happen, maybe with ActiveX.
What if the folder is on the server?
yamaharuss
08-27-2010, 05:24 PM
You are still trying to use a server-side script to interact with a client-side program.
rtown
08-27-2010, 05:26 PM
i see.. perhaps some javascript... i had a quick look but couldnt find much without a 3rd party explorer...