Tagged Questions
1
vote
4answers
268 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
2answers
643 views
Upload file in ASP.NET MVC (Again!)
I have a problem with uploading file in asp.net mvc 2.
My controller function's parameter is a FormCollection type. Because number of fields are too many, I can't seperate each field as parameter. I ...
0
votes
3answers
1k views
Getting the original files create date upon upload
We have a process in place that uploads files to our website. It has become important to the users to be able to see when those files were created. I'm looking for a way to extract the original ...