I am using kendo file upload control in my application. For example, I select a file with a size of 20 MB. The request is sent to the server, which should load this document in azure + insert a database record pointing to blob.
The problem is that if the server has all the bytes transferred, and the rest of the operations are performed (for example, downloading a file and inserting a record into the database), and at the same time, the user cancels the download from the client, he gets canceled on the client side. The BUT server is still loading. How should I handle this? Any thoughts?
Thanks!
source share