当我试着上传图片到高爸爸,我只能上传较小的图像大小。
我已经在我的web-config中使用了这个,但是我仍然无法上传更大的文件。
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>发布于 2017-04-29 07:43:19
在web配置中,您需要将maxRequestLength与上述配置一起添加到System.web中。
例如:
<httpRuntime maxRequestLength="600000" />https://stackoverflow.com/questions/43693036
复制相似问题