Tagged Questions

4
votes
1answer
830 views

C# - I cannot reference HttpPostedFileBase

I am using MVC .NET in a distributed environment with CSLA and I can reference HttpPostedFileBase from one of my web layers (eg Website.MVC), but I cannot reference HttpPostedFileBase from a separate ...
2
votes
1answer
877 views

How should i save a HttpPostedFile

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 ...
1
vote
4answers
238 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
1answer
82 views

How to record files on a server with minimal access using MVC

How to record files on a server with minimal access using MVC. The next version of the code is not suitable as it will be clogging up the domain. Controller code: var fileFile = Request.Files["p" ...
0
votes
3answers
1k views

Invalid Cast Exception in HttpFileCollection

I have an extension method below, but when I run this, the foreach gives me InvalidCastException and it says * Unable to cast object of type 'System.String' to type ...
0
votes
1answer
110 views

Inconsistency in file before and after upload to Oracle DB

I'm trying to get my website to allow users to upload various files (HttpPostedFile), which are then stored in an Oracle database as BLOBs. Here's what I've got so far: public static bool ...