Ciao zxczxczxc,
puoi farlo con una pagina asp.
codice:
Path = "/tuacartellasegreta/"
FileName = "listino.pdf"
strFilePath = Server.MapPath(Path & FileName)
FileNameToSave = FileName 'Il nome con il quale sarà salvato nel client
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Type = 1 ' adTypeBinary
objStream.Open
objStream.LoadFromFile strFilePath
' intestazione per il browser sul tipo di file
Response.AddHeader "Content-Disposition", "attachment; filename=" & FileNameToSave
Response.ContentType = "application/octet-stream"
Response.BinaryWrite objStream.Read
objStream.Close
Set objStream = Nothing