C# Asynchronous WebRequest with POST
I am trying to find a C# Asynchronous WebRequest function which will be able to POST variables to a server, and retrieve the response.
I have found many Async WebRequests for C#, but they are not able to POST in them, and when I try to change them to post varia开发者_如何学运维bles, it will not work.
Cheers
Try to write your own http implementation (a simple one), it should not be that complicated
Or use google: http://www.debugging.com/bug/8530
精彩评论