我已經在Windows Server 2008操作系統上的IIS 7.5上部署了我的應用程序,我想知道什麼是最大文件上傳限制以及如何增加此限制?進出口工作在asp.net MVC2Windows Server 2008 IIS 7.5最大文件接受限制
6
A
回答
8
此設置配置上傳文件大小限制:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="10485760"/>
</requestFiltering>
</security>
</system.webServer>
默認大小爲30MB〜。
4
與設置你的web.config以下其中xxx爲最大上傳大小以KB爲單位:
<configuration>
<system.web>
<httpRuntime maxRequestLength="xxx" />
</system.web>
</configuration>
默認值是4096(= 4 MB)。 MSDN documentation
1
閱讀this博客文章,你會發現什麼是最大長度,以及如何提高其極限
相關問題
- 1. Windows Server 2008的IIS 7.5的文件夾或文件不能與+
- 2. 在Windows Server 2008上安裝IIS 7.5
- 3. Windows Server 2008許可限制
- 4. IIS 7.5 ApplicationPoolIdentity權限
- 5. 在IIS 7.5中按類型限制文件大小上傳
- 6. Server 2008 IIS 7.5 SSL會話問題
- 7. 經典asp IIS 7.5中無法訪問的包含文件Windows Web Server 2008 R2
- 8. 的Windows Server 2008 R2的IIS 7.5不服務.ashx的文件中正確
- 9. Windows Server 2008 R2 IIS Appcrash - System.StackOverflowException
- 10. 500.0 0x800700c1在IIS 7.5在Windows 2008 Server x64的
- 11. Windows Server 2008 R2 + IIS 7.5 + ASP.NET 4.0 = HTTP錯誤500.0
- 12. 使用Windows Server 2008和IIS 7.5的Access 2000的Internet同步
- 13. Windows Server 2008 R2 + IIS 7.5 - 無法找到資源
- 14. 如何在IIS 7.5,Windows Server 2008 R2(64位)中安裝PHP
- 15. 將MVC 2部署到IIS 7.5 Windows Server 2008集成模式
- 16. Windows Server 2008中的IIS 7.5上的Log4Net問題
- 17. 將IIS 6複製到IIS 7.5中
- 18. Windows Server 2008 R2文件權限
- 19. 如何在Windows Server 2008上將SQL Server 2008與IIS 7連接
- 20. Windows Server 2008問題
- 21. IIS 7.5 401僅限於Windows服務
- 22. 限制SQL Server 2008中值的可接受範圍
- 23. IIS 7.5 500大文件上傳錯誤
- 24. Windows Server 2008 R2:上傳限制
- 25. SQL Server 2008 R2 Express 10GB文件大小限制
- 26. 的SQL Server 2008 Express Edition的文件大小限制的問題
- 27. IIS 7.5中的虛擬目錄是否存在文件夾大小限制?
- 28. IIS 7.5 - Windows Server 2008 - 文件上傳405錯誤。代碼在Windows 2003服務器中工作
- 29. SQL Server Express 2008 10GB大小限制
- 30. Sql Server 2008地理LineString大小限制
感謝亞歷克斯,但你所提供的鏈接是我自己的博客:) – 2011-02-02 19:22:05