This code streams large files to our users:
// Open the file. iStream = new System.IO.FileStream(filepath, System.IO.FileMode.Ope
I am posting this answer because it might be help others and save some important time.
In my case Response.Buffer = true in download method (on very first statement) solved the issue.
Response.Buffer = true
Thanks