后台post请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台post请求相关的知识,希望对你有一定的参考价值。
public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain"; System.Net.WebClient client = new System.Net.WebClient(); client.Headers.Add("Accept_Language", "zh-cn"); client.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); var name = new System.Collections.Specialized.NameValueCollection(); name.Add("action", "send");//固定 name.Add("userid", "");//公司id name.Add("account", "******");//接口账号 name.Add("password", "****");//接口密码 name.Add("mobile", "***");//接收短信的手机 name.Add("content", "12345【公司名称】"); name.Add("sendTime", "");//发送时间 name.Add("extno", "");//扩展码 byte[] buffer = client.UploadValues("http://dx.ipyy.net/smsJson.aspx", "post", name); string str = System.Text.Encoding.UTF8.GetString(buffer); context.Response.Write(str); }
以上是关于后台post请求的主要内容,如果未能解决你的问题,请参考以下文章
Webpack运行后,XMLHttpRequest发送带参请求,后台$_POST没有数据