导航:首页 > 编程语言 > 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调用迅雷相关的资料

热点内容
深圳哪里有教少儿编程 浏览:549
360极速浏览器临时文件夹 浏览:409
怎么用网络接收信息 浏览:338
暗黑2怎么升级到113 浏览:624
蓝臻一段在哪些app可以买 浏览:153
腾讯网络交易平台 浏览:217
cad如何学会数控编程 浏览:754
手机pdf格式的文件 浏览:390
小短片的网站有哪些 浏览:129
关机命令linux 浏览:561
数控坐标偏置如何编程 浏览:644
php仿qq空间网页源码 浏览:398
先进的网站有哪些 浏览:802
ksearchexe损坏文件 浏览:659
编写阶乘相加的程序 浏览:222
popsub代码 浏览:857
kpl编程可以做什么工作 浏览:808
连接wifi一直让输密码 浏览:191
网络欺凌是什么 浏览:457
怎么解除别人的qq关联 浏览:420

友情链接