Du kan bruge jQuery File Download plugin til dit formål, det er et simpelt eksempel, du kan bruge i din klient til at administrere den downloadede fil:
$.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');
});
Her er der flere eksempler