views:

155

answers:

1

Hi All, 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 is 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

A: 

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.

Johannes Setiabudi