0
我試圖隱藏某些文件的下載鏈接。他們在FTP上。當我下載一個文件,然後我可以回溯到服務器並爬行一些文件,但我想阻止。我已經搜索了一些解決方案,但我從來沒有讓他們工作。隱藏下載鏈接ASP
我有一個單獨的下載代碼的download.ashx文件。 I'T只對文件download.zip
Response.Clear()
Response.ContentType = "application/x-zip-compressed"
Response.AppendHeader("Content-Disposition", "attachment; filename=download.zip")
Response.WriteFile(ftp://server.de/files/scripts/files/)
Response.End()
一個例子這是超鏈接進行下載,當我點擊downloadlink我得到一個運行時錯誤
<a href="download.ashx?download.zip" target=""_blank"">Click here to Download File</a>
每次:
Server Error in '/files/scripts/files' Application.
我希望你有一些想法來解決這個問題。
感謝
謝謝,我會嘗試 – mbauer
我試過解決方案,但得到了像上面一樣的錯誤。 – mbauer