我有處理文件上傳的ASP.NET IHttpHandler模塊。我在配置文件中將文件大小限制設置爲50MBmaxAllowedContentLength不適用於IHttpHandler IIS7
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
</system.webServer>
但是上傳13mb文件時仍然出錯。
System.Web.HttpException (0x80004005): Maximum request length exceeded.
如何增加默認允許的文件大小?
這其實是不對的 - http://stackoverflow.com/a/3787284/ - 你需要在這裏千字節。 – sharptooth
正確的maxRequestLength以KB爲單位,請參閱此處:http://msdn.microsoft.com/en-gb/library/e1f13641%28v=vs.85%29.aspx –