| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 433 人关注过本帖
标题:关于下载的问题,急!!!
取消只看楼主 加入收藏
wanghua09
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2009-8-13
结帖率:100%
收藏
 问题点数:0 回复次数:1 
关于下载的问题,急!!!
再下載文件時,在若網路設有防火牆,則網頁會顯示【無法顯示此頁】,怎麼辦?請路過大俠指引.
急!急!急!!

下載文件:
<%
strFile="c_comp.exe"

call downloadFile(strFile)

function downloadFile(strFile)
    strFilename = server.MapPath(strFile)
   
    Response.Buffer = True
    Response.Clear
   
    Set fso=Server.CreateObject("Scripting.FileSystemObject")
        if not fso.FileExists(strFilename) then
        Response.Write("沒找到文件")
        Response.End
        end if
    Set fl=fso.getfile(strFilename)  
    flsize=fl.size  
    flName=fl.name
    Set fl=Nothing  
    Set fso=Nothing  
    Set objStream  =  Server.CreateObject("ADODB.Stream")  
    objStream.Open  
    objStream.Type  =  1  
    objStream.LoadFromFile  strFilename  
   
    Response.AddHeader  "Content-Disposition",  "attachment;  filename="  &  flName  
    Response.AddHeader  "Content-Length",  flsize  
    Response.Charset  =  "big5"  
    Response.ContentType  =  "application/unknow"  
    Response.BinaryWrite  objStream.Read  
    Response.Flush  
    response.Clear()  
    objStream.Close  
    Set  objStream  =  Nothing                        
End Function

%>

[ 本帖最后由 wanghua09 于 2009-11-4 19:36 编辑 ]
搜索更多相关主题的帖子: 防火 function 
2009-11-04 19:31
wanghua09
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2009-8-13
收藏
得分:0 
回复 楼主 wanghua09
問題補充:也可以判斷如果頁不能下載,顯示提示也可以
2009-11-05 09:33
快速回复:关于下载的问题,急!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015848 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved