Saturday 31 August 2013

Download interrupted in IE10


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

1 comment: