The maxrequestlength tag has no wiki summary.
1
vote
1answer
130 views
Max parameter size for NSData / setHTTPBody?
My iPad app sends a list of files as a string parameter, fileList to a web method like this:
NSString *post = [NSString stringWithFormat:@"sessionID=%@&fileList=%@&dateTime=%@&userID=%@", ...
0
votes
0answers
97 views
ASP.NET Application_Error Redirection
I have a web application and users started uploading large files. To avoid errors i did this:
1- Set the httpRuntime maxRequestLength.
2- Edited the Application_Error function of Global.asax to this: ...
0
votes
1answer
96 views
elegant maxrequest handler
Another question from me. This wont be an easy one!
I'm having issues with handling a simple upload.
Pre Requirements to test with:
- No Flash (hijacking)
- Basic upload field usage + form to post
- ...
8
votes
1answer
444 views
max upload length
Things I already know about upload size limits in MVC:
For IIS7 you have to set both maxAllowedContentLength and maxRequestLength for a max upload size
I know 1 property is in bytes and the other in ...
0
votes
1answer
284 views
Why maxRequestLength set is invalid in MVC 3?
In the web.config, I've set maxRequestLength to 102400. When I upload a 65M file, it redirects me to a 404 error page, but it is normal in asp.net. This is the current setting:
<httpRuntime ...
3
votes
1answer
3k views
ERR_CONNECTION_RESET: The connection was reset when uploading a large file
I had a mysterious error where a file greater than 4MB generated a random error. Later on I realized it was caused due to the http maxrequestlength
. An image cannot be greater than 4MB when uploaded ...
2
votes
1answer
2k views
Maximum upload file size exceeded is ignored
I'm attempting to upload documents to my server using the technique describe on this blog
All has gone well, and I am able to upload documents just fine. The only snag is when I attempt to upload a ...
1
vote
1answer
2k views
Maximum Request Length Exceeded Not Redirect on Error Page
I followed these links:
Catching "Maximum request length exceeded"
and
ASP.NET - how to show a error page when uploading big file (Maximum request length exceeded)?
to display error ...
43
votes
2answers
7k views
Which gets priority? maxRequestLength or maxAllowedContentLength?
While changing the maximum allowed file size for upload I stumbled on those two settings.
In the sytem.web you have the http runtime node with maxRequestLength.
In the system.webServer you have the ...
1
vote
3answers
490 views
How can I remove an uploaded file from an ASP.NET page request and handle the request without compromising its integrity?
Suppose someone:
visits and ASPX page (http get request).
sets a "too large" file in a file uploader and clicks the upload button (http post request).
I don't care to have a custom error page ...
4
votes
3answers
9k views
Maximum value of maxRequestLength?
If we are using IIS 7 and .Net Framework 4, what will be the maximum value of maxRequestLength?
0
votes
2answers
4k views
AsyncFileUpload: How do I hide the max request length exceeded alert error?
If I upload a file that is larger than the configs max request length I get a "Server Response Error: Unknown Server Error" alert popup. It asks if I want to see the response page and if I click "OK" ...
0
votes
1answer
1k views
How can you know that current request exceeds maxRequestLength in ASP.Net?
I'm developing a small web application in ASP.Net (framework version 3.5) using VS2008 and C# 3.0. There's a file upload, and I want to make sure that the whole request doesn't exceed 5 MB.
I ...
0
votes
3answers
736 views
ASP.NET FileUpload failure
Trying to upload a large file (20MB), I set the maxRequestLength to a high enough level (and the expiration time too) in the httpRuntime entry of web.config. The Event Log stopped reporting that the ...
14
votes
3answers
13k views
file size upload limitation in ASP.NET MVC: more than 1 maxRequestLength setting in web.config(s)
I'd like to have more than 1 setting for maxRequestLength - file size upload limitation (e.g. one for File/New, other for Picture/New). All of my Actions take additional parameters (e.g. ...
9
votes
6answers
5k views
ASP.NET - how to show a error page when uploading big file (Maximum request length exceeded)?
Application able to record error in OnError, but we are not able to do any redirect or so to show something meaningfull to user.
Any ideas?
I know that we can set maxRequestLength in web.config, but ...