Situation, a user MAY upload a file and MAY trigger the spam filter. If it does trigger the spam filter i save all the post data and show a captcha. If the 'bot' doesnt succeed by the time the session times out the HttpPostedFile data (which includes uploaded file) should discard.

I am assuming i dont want to put the uploaded data into session (it is likely to be a few Kb but may be 20mb+). So how i store/discard this data efficiently and properly

link|improve this question

74% accept rate
1  
Keep in mind that by default, ASP.Net has a maximum request size of 4MB. If you need to upload files greater than that, you'll have to change your configuration in web.config. – adrianbanks Jul 6 '09 at 14:23
feedback

1 Answer

Save the file in a safe directory (no permissions to execute or access from the site), probably with a guid as a filename, then store that guid in session. That way after your captcha you can go back and grab the file from the directory.

You can clean up this directory on success / failures, or also run a job just to remove anything over a certain age.

link|improve this answer
sounds good to me. – acidzombie24 Jul 6 '09 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.