Tagged Questions

2
votes
1answer
875 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
1answer
147 views

Is there a way to get an httppostedfile WITHOUT using the fileuplaod control?

I have a class that needs an System.Web.HttpPostedFile object. In most cases this is obtained when the user uploads a pic. However, in cases where they don't I need to pass a default image to the ...
0
votes
1answer
105 views

How to send attached image within a HttpWebRequest

public class UploadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.Clear(); context.Response.ContentType = ...
0
votes
2answers
49 views

How to Send and Receive file?

I want following type of functionality There are two users A and B both are visiting same page This page has a button(Send File) . When A clicks on button an Open Dialog box should appear When ...
0
votes
2answers
386 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

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 ...