最近写一个程序,android手机端上传多个图片到asp.net服务器端,使用httpclient,在网上查到了使用multipartentity。上传测试时总是出现(500)Internal Server Error,最后查出原来是文件大小超出了服务器限制,在项目的web.config中添加:
<system.web>
<HttpRuntime maxRequestLength="409600" executionTimeout="60" />
</system.web>
2022-07-14 17:24:34
最近写一个程序,android手机端上传多个图片到asp.net服务器端,使用httpclient,在网上查到了使用multipartentity。上传测试时总是出现(500)Internal Server Error,最后查出原来是文件大小超出了服务器限制,在项目的web.config中添加:
<system.web>
<HttpRuntime maxRequestLength="409600" executionTimeout="60" />
</system.web>