上传者: 38740848
|
上传时间: 2022-02-28 10:55:54
|
文件大小: 41KB
|
文件类型: -
private string HttpPost(string Url, string postDataStr)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
request.Method = POST;
request.ContentType = application/x-www-form-urlencoded;
request.ContentLength = Encoding.UTF8.GetByteCount(postDataStr);