本文介绍了我如何使用asp.net上传大文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

m使用

<httpruntime executiontimeout="110" maxrequestlength="22024">...
</httpruntime>




OR

<httpruntime executiontimeout="5" maxrequestlength="20480">



但它的大小不能超过4024..



but its not working more than 4024 of size..

推荐答案


<system.web>
<httpruntime executiontimeout="5" maxrequestlength="20480" />
</system.web>


这篇关于我如何使用asp.net上传大文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 14:37