希望增加可以對IIS上傳文件的200K進行后臺調(diào)節(jié)功能
您好,感覺您的反饋,我們將提交給開發(fā)部門的同事。
事實上上傳功能不僅僅要依賴IIS,還要依賴于網(wǎng)站程序的腳本,比如是PHP的話還需要設置PHP.INI的上傳大小限制。
IIS的話,暫時你可以通過以下辦法來解決,在網(wǎng)站根目錄下創(chuàng)建文件web.config,使用記事本打開復制粘貼以下內(nèi)容。
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="102400000" /> </requestFiltering> </security> </system.webServer> <system.web> <httpRuntime executionTimeout="1800" /> </system.web> </configuration>
maxAllowedContentLength:文件大?。ㄗ止?jié))
executionTimeout:超時時間(秒)
如果已經(jīng)網(wǎng)站根目錄下存在有web.config文件,則只需要在相應節(jié)點處添加
<requestFiltering>
<requestLimits maxAllowedContentLength="102400000" />
</requestFiltering>