Is there a way to point the control to a particular temporary folder when the user clicks the "Download as Zip".
Right now, they get an error that they don't have access to path where they are downloading from which is pretty much the way I need it to be, i.e. they can't write to that folder. I'd like when they click download, that it put's the zip file in a "Temp" folder. I'd tried setting the temporary property of file the control but that didn't seem to work.
Thanks.
Tom Riggin
3/2/2009 2:50 PM
The TemporaryFolder property of the control is for this purpose. By default, it points to "~/App_Data/temporary" (~ meaning project root not control root) so you can give your users write permissions only in this folder so that the temporary zip file can be created. You can also change this folder to somewhere else.
Cem Alacayir
3/11/2009 4:20 AM
Thanks Cem,
I got it working now.
Tom Riggin
3/11/2009 5:25 AM