最近写一个程序,android手机端上传多个图片到asp.net服务器端,使用httpclient,在网上查到了使用multipartentity。上传测试时总是出现(500)Internal Server Error,最后查出原来是文件大小超出了服务器限制,在项目的web.config中添加:
<system.web>
<HttpRuntime maxRequestLength="409600" executionTimeout="60" />
</system.web>
Android multipartentity的用法,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/meixinmeifei/p/3811059.html