I have made a web manager that can be accessed remotely, so you can remotely control your IIS directory ~ Basically, the folder file browsing, rename, delete, file download function! The key is how to implement the download problem of the ASP file, and the research finding data made this function <% 'download file function function downfile2 strfilename = server.mappath (strfile) FName = INSTRREV (Replace (Strfile, "/", " / ")," / ") if fname> 0 THEN FNAME = Right (strfile, len (strfile) -fname) else fname = strfilend ifresponse.conteTtype =" Application / X-Download "response.addheader" content-disposition ", "attachment; filename =" & fnameset Stream = CreateObject ( "Adodb.Stream") Stream.Type = 1Stream.OpenStream.LoadFromFile strFilenameWhile Not Stream.EOSResponse.BinaryWrite Stream.Read (1024 * 64) WendStream.CloseSet Stream = NothingResponse.FlushEnd Function %> This can achieve any file download ~