vote up 2 vote down star
1

How do I initialize an automatic download of a file in IE?

For example in the download page, I want the download link to appear and a message: "If you download doesn't start automatically .... etc". The download should begin shortly after the page loads.

In FireFox this is easy just need to include a meta tag in the header < meta http-equiv="Refresh" content="n;url" > where n is number of seconds and url is the download url. This does not work in IE. Can anyone provide me with a idea of how to make this work in IE browsers?

flag

4 Answers

vote up 6 vote down check

sourceforge uses an <iframe> element with the src="" attribute pointing to the file to download.

(side effect: no redirect, no javascript, original URL remains unchanged)

link|flag
vote up 2 vote down

I hate when sites complicate download so much and use hacks instead of a good old link.

<a href="file.zip">Start automatic download!</a>

If you want to display "thanks" after download, then use:

<a href="file.zip" 
   onclick="if (event.button==0) 
     setTimeout(function(){document.body.innerHTML='thanks!'},500)">
 Start automatic download!
</a>

Function in that setTimeout might be more advanced and e.g. download full page via AJAX.
The point is that link to download is real, can be copied, dragged, intercepted by download accelerators, gets :visited color, etc.

link|flag
This is subjective, our clients want automatic download of files, so in this case we prefer giving them what they want instead of arguing ... (in this particular case.) – Pop Catalin Nov 19 '08 at 9:41
I like the simplicity of your answer. – David Robbins May 23 at 10:05
vote up 1 vote down

Be sure to serve up the file without a no-cache header! IE has issues with this, if user tries to "open" the download without saving first.

link|flag
vote up 3 vote down

I recently solved it by placing the following script on the page.

setTimeout('window.location = 'yoururltofile.file', 5000);

I agree that a meta-refresh would be nicer but if it doesn't work what do you do...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.