How to make ASP.net file upload control with resume, without file size limitation and with secure connection?
Any idea?
How to make ASP.net file upload control with resume, without file size limitation and with secure connection?
Any idea?
You can split file to small part. Upload each part separately. If connection broke, just re upload last part and continue with other. After all parts are uploaded, just combine all parts on server in one file.