http://hi.baidu.com/xiaohuizuan/blog/item/95355933bc3ab7fe14cecb3f.html
前幾天做了一個網站,裡面用到了迅雷下載功能,在網上找了一下代碼整理了一下,現在拿出來了大家共用吧
首先在.aspx頁面配置資訊
<script runat=server> public string ThunderEncode(string code) { code="AA"+code+"ZZ"; string encode = ""; byte[] bytes = Encoding.GetEncoding(54936).GetBytes(code); try { encode = Convert.ToBase64String(bytes); } catch { encode = code; } return "thunder://"+encode; } </script>
<script src="http://pstatic.xunlei.com/js/webThunderDetect.js"></script> <a href="#" thunderHref="<%=ThunderEncode("http://請改成你需要的連結.rar")%>" thunderPid="57029" thunderType="" thunderResTitle="" onClick="return OnDownloadClick_Simple(this,2,4)" oncontextmenu="ThunderNetwork_SetHref(this)" >迅雷專用高速下載</a> <br /> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click1" />
然後再.cs檔案裡面填入
protected void Button1_Click1(object sender, EventArgs e) { Response.ContentType = "application/x-zip-compressed"; Response.AddHeader("Content-Disposition", "attachment;filename=z.zip"); string filename = Server.MapPath("下載檔案路徑"); Response.TransmitFile(filename);
}