日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

C# 模拟 Post

發布時間:2025/3/15 C# 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 C# 模拟 Post 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

方式一:不啟動IE,代碼中Post

try{string url = "http:\\xxx.com" ;string postString = "uid=xx&pwd=xxx";byte[] postData = Encoding.UTF8.GetBytes(postString);HttpWebRequest request = (HttpWebRequest)WebRequest.Create(new Uri(url));request.Method = "POST";//for some customer,use proxy, so add this.//refer:http://www.cnblogs.com/cxd4321/archive/2012/01/30/2331621.htmlrequest.ServicePoint.Expect100Continue = false;int timeout = 5000;Int32.TryParse(Settings.Default.LoginTimeOut, out timeout);if (timeout < 5000 || timeout > 15000)timeout = 5000;request.Timeout = timeout;request.ContentType = "application/x-www-form-urlencoded";request.ContentLength = postData.Length;using (Stream requestStream = request.GetRequestStream()){requestStream.Write(postData, 0, postData.Length);}HttpWebResponse response = (HttpWebResponse)request.GetResponse();StreamReader stream = new StreamReader(response.GetResponseStream(), Encoding.Default);string srcString = stream.ReadToEnd();response.Close();stream.Close();Trace.WriteLine(srcString);}catch (Exception ex){Trace.WriteLine(ex);} string url ="http://xxx.com"string postString = "parms=xx&pid=yyy";byte[] postData = Encoding.UTF8.GetBytes(postString);WebClient webClient = new WebClient();webClient.UseDefaultCredentials = true;webClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");byte[] responseData = webClient.UploadData(url, "POST", postData);string srcString = Encoding.UTF8.GetString(responseData);Trace.WriteLine(srcString);

?

方式二:啟動IE,并模擬Post

先添加引用,COM-->Microsoft Internet Controls

再添加代碼:

string postData = "username=admin&password=admin";var ie = new InternetExplorer();object vPost, vHeaders, vFlags, vTargetFrame;vPost = null;vFlags = null;vTargetFrame = null;vHeaders = "Content-Type: application/x-www-form-urlencoded" + Convert.ToChar(10) + Convert.ToChar(13);if (!string.IsNullOrEmpty(postData))vPost = ASCIIEncoding.Default.GetBytes(postData);ie.Visible = true;string url = "http://{IP}/validate";ie.Navigate(url, ref vFlags, ref vTargetFrame, ref vPost, ref vHeaders);

?

轉載于:https://www.cnblogs.com/xiaokang088/archive/2013/02/22/2922161.html

總結

以上是生活随笔為你收集整理的C# 模拟 Post的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。