HttpWebRequest发送post请求时有多个参数如何处理

2024-11-20 10:59:03
推荐回答(1个)
回答1:

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