In IE 10 you guys may get error Download interrupted error for some files which is grater then 20mb.
It's error occurred in IE10 only.
So For that you need to change something in your code.
If you use Response.close(); then remove it.
Just wirte something below.
Response.Flush();
Response.End();
For more info visit
http://blogs.msdn.com/b/ieinternals/archive/2012/07/16/content-length-and-transfer-encoding-validation-in-ie10-download-manager-couldnt-be-downloaded-retry-cancel.aspx
Really Nice one
ReplyDelete