These forums are read-only and considered to be an archive. Please use the new Community for future interaction and posts.

Dynamic Start Folder

Sorry for my english.
How can i do to have Dynamic start folder, for example as parameter into command line? Is important for me don't have wrote in config.asp.

Thanks

KK
KappaKappa 12/1/2005 5:23 AM
add ?d=directorypath to the calling default.asp
then use request("d") to retrieve the parameter

SLiQ 12/18/2005 8:49 PM
replace this line :
Const wexRoot = "c:\"

by this :
dim wexRoot
if (request("drive") = "") then
    wexRoot = session("wexroot")
else
    wexRoot = request("drive") & ":\"
    session("wexroot") = wexroot
end if
alex 12/19/2005 6:49 PM