有的时候我们不想让用户直接在ie中打开已知类型的文件,比如word,而希望能直接下载,这时候可用下面代码来替换response.redirect
response.contenttype = “application/octet-stream”;
response.addheader(“content-disposition”, “attachment;filename=”+yourfilename);
response.binarywrite((byte[])yourfiledata.rows[0][“attachmentcontent”]);
response.end();
补充一下。通常我喜欢把链接做成这样:
<a href=”download.aspx/hello.chm?fileid=12345″>hello.chm</a>
这样客户端下载的时候默认是 hello.chm 这个名字的