OutOfMemoryException when send big file 500MB using FileStream ASPNET

前端 未结 4 821
北海茫月
北海茫月 2020-12-01 08:26

I\'m using Filestream for read big file (> 500 MB) and I get the OutOfMemoryException.

I use Asp.net , .net 3.5, win2003, iis 6.0

I want this in my app:

4条回答
  •  遥遥无期
    2020-12-01 09:17

    You do not need to hold the whole file in memory just read it and write to the response stream in a loop.

提交回复
热议问题