views:

52

answers:

1

I'm wondering in what way HttpContext.Request keeps uploaded files in memory. Does is it hold them in RAM only or writes them in some temp dir on the HDD? How to control this process?

+2  A: 

They write the file to a temp directory. You see almost no memory use increase when uploading a file. When using this control you can't choose any other way to do it.

ChaosPandion
oh, I didn't know that. Good info.
o.k.w