Tagged Questions

3
votes
4answers
1k views

SMTP Send is locking up my files - c#

I have a function thats sending messages ( a lot of them) and their attachments. It basically loops through a directory structure and creates emails from a file structure for example ...
1
vote
4answers
236 views

File is locked after HttpPostedFile SaveAs(LocationOnServer)

I have an aspx webpage that uses as handler to save uploaded files via swfupload I am saving the file on the server like this: HttpPostedFile uploadedFile = Request.Files["Filedata"]; ...
0
votes
4answers
532 views

File locked after sending it as attachement

I am sending a file as an attachement :- // Create the file attachment for this e-mail message. Attachment data = new Attachment(filePath, MediaTypeNames.Application.Octet); ...