Problem to download 2 files at the same time (IE6 XP SP2)



ansu
07-09-2005, 11:09 PM
Hi,

on my website I start two downloads simultaneous by loading a frameset with
to frames, like:

<html>
<frameset rows=10,10 framespacing=0 frameborder=0 border=0>
<frame scrolling=No name=dload1 noresize marginwidth=0 marginheight=0
bordercolor="#ebebeb" src="download1">
<frame scrolling=no name=dload2 noresize marginwidth=0 marginheight=0
bordercolor="#ebebeb" src="download2">
</frameset>
</html>

The response is generated by a JSP-Server dynamically
Download1 Headers:
Content-Type: application/zip
Content-disposition: attachment; filename=test.csv

Download2 Headers:
Content-Type: application/zip
Content-disposition: attachment; filename=test.pdf

With IE6 (W2k, XP SP1) I've got two "Save as" dialogs like I expected.
With IE6 SP2 I've got one "Save as" dialog for the first completed download
only and the second disappeared !!! I've had a look at what is transferred
from the server to the client and see the both download contents are
transferred completely to the browser.

Is it a security issue or why doesn't it work with XP SP2 ???
Thanx


Problem to download 2 files at the same time (IE6 XP SP2)