如何解决Asp.Net中不能上传压缩文件的问题

在使用Asp.Net自带的服务器端控件Fileupload上传文件时,可能会出现不能上传压缩文件的问题,此时可以通过下面的方法解决:

在<system.web>中添加:

<httpRuntime maxRequestLength="2048000" executionTimeout="60"/>

就可以了。

上一篇:No compiler is provided in this environment.Perhaps you are running on a JRE rather than a JDK?报错解决


下一篇:java比较器的简单使用