Asp.net MVC download file asynchronously

I am developing MVC app where we allow users to upload and download files(code for download file url is below) at the same time. I found that if user click on download link to download file the file upload is automatically cancelled by browser. Could you suggest any method how to implement upload and download options at the same time?\[code\]@Html.ActionLink("Download file", "DownloadFile", "File", new { id = @conversionModel.Id }, new { @class = "btn btn-success" })\[/code\]
 
Back
Top