I have looked around without any sucess. I just thought I would ask in this forum and see if any of you had any ideas. I am using the Black Ice ActiveX to view tiff images in the broswer window. This ActiveX calls a JS file that downloads the tiff to the users c:\test.tif.
What I am finding, is that with Vista, some users do not have the ability to save the file to the root of the C drive. I would like to use the temp dir.
I have tried both of these in the JS that calles the ActiveX
var LocalFile="c:\\test.tif";
or
var LocalFile="%TEMP%\test.tif";
Is there anyways with ASP or any other ideas on how to get th users Temp dir?
What I am finding, is that with Vista, some users do not have the ability to save the file to the root of the C drive. I would like to use the temp dir.
I have tried both of these in the JS that calles the ActiveX
var LocalFile="c:\\test.tif";
or
var LocalFile="%TEMP%\test.tif";
Is there anyways with ASP or any other ideas on how to get th users Temp dir?