The httpfilecollection tag has no wiki summary.
7
votes
2answers
96 views
resource not found instead of 413 request length exceeded
My page, when I try to upload a large file (over 10MB) displays me:
The resource you are looking for has been removed, had its name
changed, or is temporarily unavailable.
My web.config has ...
0
votes
0answers
65 views
Modify contents of a HttpFileCollection
I would like to modify the contents of a HttpFileCollection form HttpContext.Current.Request.Files. I have a form with a file upload that I need to be able to change some things with the incoming ...
0
votes
1answer
209 views
Converting HttpFileCollection to byte and stream the data to Image Control in asp.net
HttpFileCollection oHttpFileCollection = e.PostedFiles;
HttpPostedFile oHttpPostedFile = null;
if (e.HasFiles)
{
for (int n = 0; n < e.Count; n++)
{
...
0
votes
2answers
443 views
Flajaxian Custom Folder Save Location
I see a lot of people coming up with some excessive ways to change the folder location on the fly with flajaxian multiple file upload control.
Was just wondering if the more experienced could take ...
0
votes
1answer
188 views
select particular key by name from HttpFileCollection
how to select particular item from HttpFileCollection Object
HttpFileCollection uploads = default(HttpFileCollection);
uploads = HttpContext.Current.Request.Files;
I want to select some ...
1
vote
1answer
150 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 ...
3
votes
3answers
1k 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 ...
1
vote
1answer
482 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
2answers
1k 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 ...
2
votes
3answers
989 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 ...
2
votes
4answers
2k 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
...
