我如何上传超过1.5MB?
我修改了我的web.config文件,但它无法正常工作,只需上传最大1.5MB。
你可以在下面找到我的代码:
<configuration>
<system.web>
<httpRuntime executionTimeout="240" maxRequestLength="67108864" targetFramework="4.5"/>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
上传文件:
$http({ method: 'POST', url: rootURL + '/uploadfileFUNC', }).success(function (data) {
alert("File successfuly uploded.");
})
&#39; uploadfileFUNC&#39;是我在asp.net中的功能
错误:
POST http://localhost:8090/uploadfileFUNC 500 (Internal Server Error)
如果我必须更改上述代码中的任何内容或其他内容,请告诉我。
感谢