Tagged Questions
The httpfilecollection tag has no wiki summary.
3
votes
3answers
394 views
HTTPRequest.Files.Count Never Equals Zero
I have a form on an HTML page that a user needs to use to upload a file which posts to an ASPX page. In the code behind, I want to test if a file has actually been loaded.
if (Request.Files.Count ...
2
votes
3answers
599 views
Calculate total content length of HttpFileCollection using Lambda expressions
My code has something like this:
HttpFileCollection files
Instead of looping through each file and adding up the file.ContentLength to get the total length of all content e.g.
int ...
1
vote
1answer
45 views
HttpFileCollectionBase does not allow me to access any of the other MIME multipart header fields
I am constructing a MIME multipart stream that is a collection of various files/data the user has chosen for upload. I then PUT this stream to a URL using asp.net MVC 3 (though the MVC bit should be ...
1
vote
1answer
293 views
Null reference check required to enumerate a collection inside a reflected assembly?
I'm running into a very strange behavior in C#/.NET 3.5...
I am writing a class which hooks into upload pipeline of a content management system. The CMS executes this hook via reflection.
For some ...
0
votes
1answer
619 views
Why doesnt doesnt HTML input of type file not work with Ajax update panel
I have a input of type file and when i try to do a Request.files when the input is wrapped in an update panel...it always returns an empty httpfilecollection. Why???
This is the codebehind: (At ...
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
...