将图像从 Android 手机上传到 Asp.net 服务器
我搜索了很多链接但找不到解决方案。因为我对 Asp.net 编码不太了解。任何人都可以帮助我了解将图像从 imageview 上传到 Asp.net 服务器的示例过程。
提前致谢
I searched many links but not able to find the solutions. As i dont have much idea about coding Asp.net . Can any one help me about the procedure with example to upload a image from the imageview to the Asp.net server.
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用的方法与 JME 中的方法相同。检查一下。上传图片是通过 HTTP post 完成的
所有服务器端语言都接受 multipart/form-data 内容类型,因此它在 ASP.NET 中的工作方式应该与在 PHP 中的工作方式相同。
I used the same way as in JME.check this. Uploading images is done through HTTP post and
multipart/form-data content type which is accepted by all server side languages, so it should work in ASP.NET in the same was as it works in PHP.