我添加了一個文件上傳控制到我的網站,但是當我加入一個大文件,我得到這個錯誤:上傳文件超過最大請求長度較大
The request filtering module is configured to deny a request that exceeds the request content length.
我搜索,發現了一個建議的解決方案是在web配置
<httpRuntime targetFramework="4.5" maxRequestLength="512000000"/>
添加以下代碼和編輯IIS應用程序主機配置與此代碼添加到它
<maxAllowedContentLength="512000000"/>
我做了所有這些步驟,它沒有工作。我仍然無法上傳大於最大尺寸的文件。
您試圖上傳的文件有多大? – jackncoke
你使用的是.net 4.5嗎? – Mark