Asp.Net模拟post提交数据方法


方法1:

        System.Net.WebClient WebClientObj = new System.Net.WebClient();
        System.Collections.Specialized.NameValueCollection PostVars = new System.Collections.Specialized.NameValueCollection();
        PostVars.Add("A1", "xxx");
        PostVars.Add("A2", "0");
        PostVars.Add("A3", "000");

        byte[] byRemoteInfo = WebClientObj.UploadValues("https://www.xxx.com", "POST", PostVars);
        string sRemoteInfo = System.Text.Encoding.Default.GetString(byRemoteInfo);
        Response.Write(sRemoteInfo);

方法2:

string url = "https://www.xxx.com/api/";
        HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
        string postdata = "key=djfkdjkf";
        byte[] requestBytes = System.Text.Encoding.UTF8.GetBytes(postdata);
        req.Method = "POST";
        req.ContentType = "application/x-www-form-urlencoded";
        req.ContentLength = requestBytes.Length;
        req.Referer = "https://www.xxx.com";
        Stream requestStream = req.GetRequestStream();
        requestStream.Write(requestBytes, 0, requestBytes.Length);
        requestStream.Close();
        HttpWebResponse res = (HttpWebResponse)req.GetResponse();
        StreamReader sr = new StreamReader(res.GetResponseStream(), System.Text.Encoding.UTF8);
        string backstr = sr.ReadToEnd();
        Response.Write(backstr); 
        sr.Close(); 
        res.Close();

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM