If we are using IIS 7 and .Net Framework 4, what will be the maximum value of maxRequestLength?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

As per MSDN the default value is 4096 KB (4 MB).

UPDATE

As for the Maximum, since it is an int data type, then theoretically you can go up to 2,147,483,647. Also I wanted to make sure that you are aware that IIS 7 uses maxAllowedContentLength for specifying file upload size. By default it is set to 30000000 around 30MB and being an uint, it should theoretically allow a max of 4,294,967,295

link|improve this answer
He's asking for the max, not the default. – Anthony Pegram Dec 28 '10 at 18:22
@Anthony thanks for the correction, I didn't notice the maximum part :) – Waleed Al-Balooshi Dec 28 '10 at 18:36
feedback

2,147,483,647 bytes, since the value is a signed integer (Int32). That's probably more than you'll need.

link|improve this answer
feedback

Maximum is 2097151, If you try set more error occurred.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.