To download files using a “Save As” dialog box try this code: Select Case FileExt Case “gif” ContentType = “image/gif” Case “tif” ContentType = “image/tiff” Case “jpg” ContentType = “image/jpeg” Case “pdf” ContentType = “application/pdf” Case “avi” ContentType = “video/x-msvideo” Case “mp3” ContentType = “audio/mpeg” Case “mpg” ContentType = “video/mpeg” Case “wav” ContentType = “audio/wav” Case “rar” ContentType = “application/x-rar-compressed” Case “zip” ContentType = “application/x-zip-compressed” Case […]