我想使用ajax请求上传大约40 MB的文件。
我已经在我的web.config文件中添加了以下代码
使用ajax请求上传大文件的任何解决方案。
谢谢
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
<httpRuntime targetFramework="4.5" maxRequestLength="1048576" maxQueryStringLength="32768" maxUrlLength="65536" />