Vous pouvez utiliser téléchargement de fichiers jQuery plugin pour votre usage, c'est un exemple simple que vous pouvez utiliser dans votre client pour gérer le fichier téléchargé :
$.fileDownload('urlForYourFile')
.done(function () {
alert('File download a success!');
$.post('/postChatFileSend', {fileName: 'fileName'}, function(data) {
//Check the response, if the status propery is true, the file must have been removed from the server
});
})
.fail(function() {
alert('An error has ocurred');
});
Ici, il y a plus d'exemples