Tagged Questions

6
votes
3answers
1k views

HttpPostedFile.FileName - Different from IE

When I upload a file to a site using the ASP:File control the FileName property is different in IE and Firefox. In Firefox, it just provides the name of the file, but IE provides the full path to the ...
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
2answers
409 views

ASP.NET MVC passing Model *together* with files back to controller

Ok, I've been going at this for several hours and I simply cannot find the solution. I want to get some data from my user. So first, I use a controller to create a view which receives a Model: ...
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 ...