Rank: Advanced Member Groups: Member
Joined: 6/5/2007 Posts: 76
|
Do the temporary .data files generated by the uploader (3 files for each one uploaded), get cleaned up at all automatically, or do I need to implement a delete procedure myself?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,193
|
Yes. They get cleaned up automatically.
If you want to keep them, you can keep a reference of the AJAXPostedFile object that you get from PostedFiles property. Usually you would never need to worry about this because when you access PostedFiles in your code, you are already holding a reference to all the AJAXPostedFiles object until the code goes out of the scope --- at which point you are already done with the uploaded files.
|