Hi all,
I have problem when try auto download in another page that already been specify.
In current page, I have button to trigger to redirect page to download page, but I wish to download done automatic, even it don't done automatic. It can be done using link to download file. File name wish to download, transfer using querystring, cookie, or session (I using cookie is this case).
The redirect page and download from link button, work perfect just like I wish. But the problem is auto download dont' work properly.
This what I already trying to do about problem auto download:
using
if (!IsPostBack)
condition. The download work, but the page don't redirect to download page and even that update progress keep running. (Actually i put update progress for purpose generate file before redirect and download).using timer. When is not postback condition, I trying enable the timer with interval 2sec. When in timer event is trigger i disable timer and trying download it. But the problem is timer dont disable, keep every 2 sec to download file.
Regard.