导航:首页 > 编程语言 > js调用迅雷

js调用迅雷

发布时间:2024-11-07 17:42:59

⑴ 如果调用网页JS代码,实现迅雷下载文件名全自动重命名~

download.aspx
string fileName = "";//客户端保存的文件名
string filePath = Server.MapPath("");//路径

FileInfo fileInfo = new FileInfo(filePath);
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
Response.AddHeader("Content-Length", fileInfo.Length.ToString());
Response.AddHeader("Content-Transfer-Encoding", "binary");
Response.ContentType = "application/octet-stream";
Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
Response.WriteFile(fileInfo.FullName);
Response.Flush();
Response.End();

阅读全文

与js调用迅雷相关的资料

热点内容
视频文件没有图标 浏览:944
文件图标上有个锁 浏览:87
ios9appstore空白 浏览:744
htmljs是什么 浏览:852
win10自带软件卸载软件卸载 浏览:552
苹果刷机好多钱 浏览:275
mac怎么滚动截屏网站 浏览:619
mtkflashtool教程 浏览:176
unicode代码表 浏览:520
苹果app为什么搜不到仙剑奇侠传了 浏览:198
c程序数组内存 浏览:589
数据线的水晶头怎么拆 浏览:462
学习编程可以干什么兼职 浏览:920
linux开机启动sh 浏览:133
微信网名独立 浏览:607
城中村网络 浏览:272
梦幻诛仙微信礼包大全 浏览:615
苹果7出现网络问题 浏览:233
ip地址网络号怎么看 浏览:926
濮阳市运营商大数据价格多少钱 浏览:32

友情链接