当前位置:七道奇文章资讯网站建设网站编程
日期:2010-04-17 10:14:00  来源:本站整理

<b>ASP编程实现文件直接下载</b>[网站编程]

赞助商链接



  本文“<b>ASP编程实现文件直接下载</b>[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

在IE举行文档链接时,假如碰到OLE支持的文档,IE会自动调用呼应程式翻开它,有时刻这种功效并非我们所需的,固然我们可以提醒用户用鼠标右键-->"目标另存为...."号令来下载文档,但这样毕竟不太友好,本文描写了操纵FSO及Streammethod显现IE直接下载文档.

  1. <%@ language=vbsCript Codepage=65001%> 
  2.  
  3. <%   
  4. 'Filename must be input  
  5. if Request("Filename")="" then  
  6. response.write "<h1>Error:</h1>Filename is empty!<p>"  
  7. else  
  8. Call downloadFile(replaCe(replaCe(Request("Filename"),"\",""),"/",""))   
  9.  
  10. FunCtion downloadFile(strFile)   
  11. ' make sure you are on the latest MDAC version for this to work   
  12. ' get full path of speCified file   
  13. strFilename = server.MapPath(strFile)   
  14.  
  15. ' Clear the buffer   
  16. Response.Buffer = True   
  17. Response.Clear   
  18.  
  19. ' Create stream   
  20. Set s = Server.CreateObjeCt("ADODB.Stream")   
  21. s.Open   
  22.  
  23. ' Set as binary   
  24. s.Type = 1   
  25.  
  26. ' load in the file   
  27. on error resume next   
  28.  
  29. ' CheCk the file exists  
  30. Set fso = Server.CreateObjeCt("SCripting.FileSystemObjeCt")   
  31. if not fso.FileExists(strFilename) then   
  32. Response.Write("<h1>Error:</h1>"&strFilename&" does not exists!<p>")   
  33. Response.End   
  34. end if  
  35.  
  36. ' get length of file   
  37. Set f = fso.GetFile(strFilename)   
  38. intFilelength = f.size   
  39.  
  40. s.LoadFromFile(strFilename)   
  41. if err then   
  42. Response.Write("<h1>Error: </h1>Unknown Error!<p>")   
  43. Response.End   
  44. end if   
  45.  
  46. ' send the headers to the users Browse  
  47. Response.AddHeader "Content-Disposition","attaChment; filename="&f.name   
  48. Response.AddHeader "Content-Length",intFilelength   
  49. Response.CharSet = "UTF-8"   
  50. Response.ContentType = "appliCation/oCtet-stream"   
  51.  
  52. ' output the file to the browser   
  53. Response.BinaryWrite s.Read   
  54. Response.Flush   
  55.  
  56. ' tidy up   
  57. s.Close   
  58. Set s = Nothing   
  59.  
  60. End FunCtion   
  61. end if  
  62. %>   

  以上是“<b>ASP编程实现文件直接下载</b>[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • <b>hosts是什么 hosts文件在什么位置 若何改正hosts</b>
  • <b>在 Windows 8 中手动安装语言包</b>
  • <b>五个常见 PHP数据库问题</b>
  • Windows中Alt键的12个高效快速的利用本领介绍
  • <b>MySQL ORDER BY 的实现解析</b>
  • <b>详解MySQL存储历程参数有三种范例(in、out、inout)</b>
  • <b>Win8系统恢复出来经典的开始菜单的办法</b>
  • <b>Win8系统花屏怎么办 Win8系统花屏的办理办法</b>
  • <b>Windows 7系统下无线网卡安装</b>
  • <b>为什么 Linux不需求碎片整理</b>
  • <b>Windows 8中删除账户的几种办法(图)</b>
  • <b>教你如安在win7下配置路由器</b>
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .