Massive Temp Files Being Generated By Application - ASP.NET MVC/IIS 6
I just recently put an ASP.NET MVC application I developed/tested/etc up to my company's production server (IIS 6). However, it is generating some massive temp files (up to 1GB!), which i开发者_如何学Cs a problem, since the server is running a 2GB partition.
UPDATE: MORE INFO: The temp files are being put into the c:\windows\temp directory
Is this normal behavior? If not, what possible causes could there be, and solutions.
If it is normal, what is the best way to overcome it?
Thanks, Jack
Looks like your code maybe posting/saving some of the uploaded file cache in the temp dir.
Try commenting some code out that does the upload/saving and see if it still making temp files.
精彩评论