客户端JavaScript
function downCsv() {
  window.fraDown1.location.href = "down.asp?fName=d1.csv";
  window.fraDown2.location.href = "down.asp?fName=d2.csv";
  window.fraDown3.location.href = "down.asp?fName=d3.csv";
}
<body onload='downCsv()'>
  <iframe name="fraDown1" width = "0" height = "0"></iframe>
  <iframe name="fraDown2" width = "0" height = "0"></iframe>
  <iframe name="fraDown3" width = "0" height = "0"></iframe>
</body>服务端
dim strFileName
strFileName = Request.Querystring("fName")
Set ObjStreamR = CreateObject("ADODB.Stream")
ObjStreamR.Open
ObjStreamR.Type = 1
ObjStreamR.LoadFromFile vntPath
Response.ContentType = "application/octet-stream"
Response.Addheader "Content-Disposition","attachment;filename=" & strFileName
Response.Binarywrite ObjStreamR.Read 
ObjStreamR.Close
Set ObjStreamR = Nothing   
代码大概就是上面的样子。
用IE6只能弹出一个CSV下载框。在IE7里能出来3个,这是为什么?
有什么设置吗?高手回答一下