| Egbert Nierop \(MVP for IIS\) 2004-11-28, 5:49 pm |
| Hi,
I suppose you have set
AspBufferingLimit
and not
ASPBUFFERLIMIT which is erroneous 
Second, it only works on Windows 2003 and above. What OS do you run?
Third,
For big dowloads, I would --disable-- the buffer! It really screws up your
memory.
Do this please
Response.Buffer =false
Response.AppendHeader("Content-Size", myFileSize.ToString());
(or sometthing like that)...
--
compatible web farm Session replacement for Asp and Asp.Net
http://www.nieropwebconsult.nl/asp_session_manager.htm
"Azkaban" <azkaban74@libero.it> wrote in message
news:%23miXlc80EHA.3336@TK2MSFTNGP11.phx.gbl...
> Hi I set ASPBUFFERLIMIT to 90000000 but if I try to download a 30Mb file I
> return an error, why?
>
>
>
> --
> Filippo Macchi
> www.filippomacchi.it
>
|