ajax上传大文件

前端之家收集整理的这篇文章主要介绍了ajax上传大文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
前边实现了Ajax无刷新上传文件,但是不能上传文件,网上查找发现在web.config中加入 
  <httpRuntime   maxRequestLength="2097151" executionTimeout="3600" />  即可
<system.web>
    <sessionState mode="InProc" timeout="15" />
    <compilation debug="true" targetFramework="4.5.2" />
    <httpRuntime targetFramework="4.5.2" maxRequestLength="2097151" executionTimeout="3600" />
    <authentication mode="Windows" />
  </system.web>
原文链接:https://www.f2er.com/ajax/160301.html

猜你在找的Ajax相关文章