第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

我想知道如果采用POST方式傳參這段代碼該怎么改?

我想知道如果采用POST方式傳參這段代碼該怎么改?

茅侃侃 2023-02-17 21:17:31
在 WinForm 用下面的方法可以打開頁面并同時(shí)通過 GET 傳參實(shí)現(xiàn)自動(dòng)登錄,string s = "http://www.xxx.com/send.aspx?user=aaa&pass=bbb";System.Diagnostics.Process.Start(s)
查看完整描述

1 回答

?
MMMHUHU

TA貢獻(xiàn)1834條經(jīng)驗(yàn) 獲得超8個(gè)贊

可以用HttpWebRequest和HttpWebResponse

或者WebRequest和WebResponse


//調(diào)用方法Dictionary<stringstring> postData = new Dictionary<stringstring>();postData.Add("user""aaa");postData.Add("pass""bbb"); GetPageByPost("http://www.xxx.com/send.aspx", postData, Encoding.UTF8); /// <summary>/// 以 Post 方式提交網(wǎng)頁數(shù)據(jù),獲得服務(wù)器返回的數(shù)據(jù)/// </summary>/// <param name="url"> Url </param>/// <param name="postData">Post 數(shù)據(jù)</param>/// <param name="encoder">網(wǎng)頁編碼</param>/// <returns>服務(wù)器返回的數(shù)據(jù)</returns>public string GetPageByPost(string url, Dictionary<stringstring> postData, Encoding encoder){    string html = "";     HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(url);    webReq.Method = "POST";     Stream reqStream = null;    if (postData != null && postData.Count > 0) {        StringBuilder sb = new StringBuilder();        foreach (KeyValuePair<stringstring> kv in postData) {            sb.Append(HttpUtility.UrlEncode(kv.Key));            sb.Append("=");            sb.Append(HttpUtility.UrlEncode(kv.Value));            sb.Append("&");        }         byte[] data = Encoding.UTF8.GetBytes(sb.ToString().TrimEnd('&'));         webReq.ContentType = ContentType;        webReq.ContentLength = data.Length;        reqStream = webReq.GetRequestStream();        reqStream.Write(data, 0, data.Length);    }     HttpWebResponse webResp = (HttpWebResponse)webReq.GetResponse();    Stream stream = webResp.GetResponseStream();    StreamReader sr = new StreamReader(stream, encoder);    html = sr.ReadToEnd();     sr.Close();    stream.Close();     if (reqStream != null) {        reqStream.Close();    }     return html;}


查看完整回答
反對(duì) 回復(fù) 2023-02-20
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)