[ create a new paste ] login | about

Link: http://codepad.org/KxRJYwPG    [ raw code | fork ]

Plain Text, pasted on Oct 6:
1
2
3
4
5
6
7
string url = "http://www.xxxxx.com/receivePost.cgi";

HttpClient cli = new HttpClient();
//cli.DefaultRequestHeaders.Add("Content-Type", "text/plain");
HttpContent content = new StringContent(data);
var res = cli.PostAsync(url, content);


Create a new paste based on this one


Comments: