HttpWebRequest
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Hey! I wanna know how can i POST an IMAGE with HttpWebRequest. I know how to post fields etc, but IMAGE... :\ Any article? tutorial? Thanks.
AFAIK, you can post binary data to any page, as long as the server application knows how to read it. Simply set the Content-Length header appropriately, and send the binary data. Other way would be sending it as a text field, base64 encoded. Yes, even I am blogging now!