资 源 简 介
About
This is class to sending HTTP POST requests to the server and receive responses.
How to use:
```
string serviceUrl = "http:example.com"
string filePath = "C: est.txt"
PostSubmitter ps = new PostSubmitter(new Uri(serviceUrl));
ps.WriteField("name0", filePath);
FileInfo fi = new FileInfo(filePath);
ps.WriteFile("content0", "application/octet-stream", fi);
ps.Close();
string strResponse = ps.GetResponse();
```
Here was taken the original idea: http://geekswithblogs.net/rakker/archive/2006/04/21/76044.aspx