Você pode usar Download de arquivo jQuery plugin para seu propósito, é um exemplo simples que você pode usar em seu cliente para gerenciar o arquivo baixado:
$.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');
});
Aqui estão mais exemplos