1

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

radha
  • 175
  • 5
  • 13
  • Refer this tutorial: [ANDROID – Upload an image to a server](http://www.coderzheaven.com/2011/04/25/android-upload-an-image-to-a-server/) – Paresh Mayani Jun 21 '12 at 07:52
  • you can use this [link](http://coderzheaven.com/2011/04/android-upload-an-image-to-a-server/) for reference, And I think it doesn't mater whether its php server, Asp.net server or java server. Thnx. – user370305 Aug 19 '11 at 12:23

1 Answers1

1

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.

Mahdi Hijazi
  • 4,424
  • 3
  • 24
  • 29