时间:2021-07-01 10:21:17 帮助过:2人阅读
你就你的pak文件打包了再链接嘛!
应该可以的, 换个浏览器试试. 不行的话那就打包成zip吧.
a标签把参数传到新页面,新页面以二进制方式读取文件流,输出网页的header,指明文件类型,然后输出文件
没实验,不知道行不行的说...
a.pak的文件下载不了
是因为mime类型没有注册
你可以
Response.Clear(); Response.ClearContent(); Response.ClearHeaders(); Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName); Response.AddHeader("Content-Length", fileInfo.Length); Response.AddHeader("Content-Transfer-Encoding", "binary"); Response.ContentType = "application/octet-stream"; Response.WriteFile(fileInfo.FullName); Response.Flush(); Response.End();