原文:http://www.cnblogs.com/wolf-sun/p/3657241.html?utm_source=tuicool&utm_medium=referralhtml
以前使用Uploadify作了一個上傳圖片並預覽的功能,今天在項目中,要使用該插件上傳大文件。以前弄過上傳圖片的demo,就使用該demo進行測試。能夠查看個人這篇文章:[Asp.net]Uploadify全部配置說明,常見bug問題分析。web
第一步:修改web.config服務器
<configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> <!--maxRequestLength就是文件的最大字符數,最大值不能超過2個G左右,executionTimeout是超時時間--> <httpRuntime targetFramework="4.5" maxRequestLength="1073741824" executionTimeout="3600" /> </system.web> </configuration>
第三步:添加system.webServer節點post
1 <configuration> 2 <system.web> 3 <compilation debug="true" targetFramework="4.5" /> 4 <!--maxRequestLength就是文件的最大字符數,最大值不能超過2個G左右,executionTimeout是超時時間--> 5 <httpRuntime targetFramework="4.5" maxRequestLength="1073741824" executionTimeout="3600" /> 6 </system.web> 7 <system.webServer> 8 <security> 9 <requestFiltering> 10 <!--修改服務器容許最大長度--> 11 <requestLimits maxAllowedContentLength="1073741824"/> 12 </requestFiltering> 13 </security> 14 </system.webServer> 15 </configuration>
設置IIS測試
打開IIS管理器,找到Default Web Site。先進行中止。ui
在IIS中雙擊「請求篩選」打開。url
其中的容許的最大容量長度,默認是」30000000「,30M,將其修改成1073741824,即1G。spa