File upload with ASP.Net resume support

I know how to force download a file with server side code. here's a code example

Response.Clear(); //eliminates issues where some response has already been sent
Response.ContentType = "text/plain";
Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.sql", filename));
Response.Write(yourSQL);
Response.End();

      

I like to know what header information I need to add in order to give support to the resume so that the client can resume the download if suspended. i got a link but it has an answer with many lines of code

** http://forums.asp.net/t/1218116.aspx?Resume+Download+for+Huge+Files

how to resume file upload in asp.net using c # -> better way (for large files too)

https://code.msdn.microsoft.com/Implement-resume-in-aspnet-c1bbde36 **

thank

+3
asp.net


source to share


No one has answered this question yet

See similar questions:

3
Resume download
1
how to resume file upload in asp.net using c # & # 8594; the best way (for large files too)

or similar:

818
ASP.NET Web Site or ASP.NET Web Application?
54
How to get XML back in ASP.NET?
five
Download ASP.NET Web API
3
Asp.Net Force Return
1
When uploading a file, all requests are blocked
1
IE8: Unable to load file sent via Silverlight and ASP.NET
1
Exporting data with images to Excel
1
open docx in asp.net
0
Asp.net HTTP Text File Handler. Works great for coding
0
Asp.Net saving webpage response as PDF



All Articles
Loading...
X
Show
Funny
Dev
Pics