Temporary location for large POSTs

  • Thread starter Thread starter mikehixson
  • Start date Start date
M

mikehixson

Hi,

As I understand ASP.NET 2.0 caches large POSTs to disk when the POST is
greater than 256 bytes by default. The default location for the cached
data on my machine is following:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET
Files\<appName>\<tempFolder>\<tempFolder>\uploads

I know it is possible to change the location of the whole "Temporary
ASP.NET Files" using the tempDirectory attribute of the compilation
element in the (web|machine).config. I am wondering if anyone knows how
to change the path for the large POST cache, without changing the
location of the entire "Temporary ASP.NET Files" folder. Is this even
possible?

Thanks,
Mike
 
Really? I was under the impression that the entire http request is
buffered in memory.

Perhaps this has changed for ASP.NET 2.0.
 
Back
Top