1.把附件内容,附件的mime类型存到数据库
2.通过一个跳转页面读取数据库中数据(可不传中文参数)
response.AddHeader("Content-disposition","attachment;filename="+Server.UrlEncode(filename));
response.ContentType="<文件的mime类型>";
response.BinaryWrite((byte[])filecontent);
response.flush();
response.end();
3.自动提示下载还是打开