09/10/2018, 23:59
Cách giấu link download
Chào mọi người,
Mình viết web bằng ASP, VBScript, SQL Server 2000. Mình muốn ẩn đi các link download nhạc và ebooks thì làm thế nào vậy?
Mong mọi người giúp nha.
Mình viết web bằng ASP, VBScript, SQL Server 2000. Mình muốn ẩn đi các link download nhạc và ebooks thì làm thế nào vậy?
Mong mọi người giúp nha.
Bài liên quan
(Không thể qua mặt IDM)
Một câu hỏi nữa mình muốn hỏi là mình muốn hiển thị lên website nick của những thành viên đang online thì làm thế nào?
Cách nữa là check session và đọc file [ nếu file có dữ liệu bé ].
không thoai có thể sử dụng header để send file.
Thí dụ: trong trang để link bạn làm vầy:
<%
...
Session("washere") = true
...
%>
<a href="download.asp?id=1234">1234</a>
Trong file download.asp thì bạn làm vầy:
<%
Response.Buffer = True
Response.Clear
if Session("washere") then
...
sql = "select Path2Downloadfile from ... where id = " & Replace(Request.QueryString("id","'","''")
...
rs.open ...
...
strFileName = rs.Fields("Path2Downloadfile").Value
Set fso = Server.CreateObject("Scripting.FileSystemObject")
Set myFile = fso.OpenTextFile(strFileName, 1, False)
If fso.FileExists(strFileName) Then
Call Response.AddHeader("Content-Disposition", "attachment; filename=" & strFileName)
Response.ContentType = "application/octet-stream"
While Not myFile.AtEndOfStream
Response.BinaryWrite(ChrB(Asc(myFile.Read(1))))
Wend
Else
Response.Redirect "filenotfound.html"
End If
myFile.Close
Set myFile = Nothing
Set fso = Nothing
else
Response.Redirect "default.asp"
end if
%>