回滚合并

This commit is contained in:
chenchun
2022-04-24 16:01:09 +08:00
parent 31d2c3c98e
commit 33bd8d1cd1
7 changed files with 228 additions and 49 deletions

View File

@@ -61,6 +61,7 @@ namespace Yi.Framework.Common.Helper
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = Encoding.UTF8.GetByteCount(postDataStr);
request.CookieContainer = cookie;
Stream myRequestStream = request.GetRequestStream();
StreamWriter myStreamWriter = new StreamWriter(myRequestStream, Encoding.GetEncoding("gb2312"));
myStreamWriter.Write(postDataStr);