先调用 HttpWebRequest 的 GetRequestStream,在这个流中写入请求主体,释放掉,然后再 GetResponse 即可。POST 请求一般要设置请求的 Content-Type 头属性为 application/x-www-form-urlencoded,参数作为主体按下面的格式写:param1=value1¶m2=value2&...