博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#使用post提交http请求
阅读量:6439 次
发布时间:2019-06-23

本文共 919 字,大约阅读时间需要 3 分钟。

版权声明:欢迎评论和转载,转载请注明来源。 https://blog.csdn.net/zy332719794/article/details/50517403
string strId = "guest";  string strPassword= "123456";  ASCIIEncoding encoding=new ASCIIEncoding();  string postData="userid="+strId;  postData += ("&password="+strPassword);  byte[] data = encoding.GetBytes(postData);  // Prepare web request...  HttpWebRequest myRequest =   (HttpWebRequest)WebRequest.Create("http://www.here.com/login.asp");  myRequest.Method = "POST";  myRequest.ContentType="application/x-www-form-urlencoded";  myRequest.ContentLength = data.Length;  Stream newStream=myRequest.GetRequestStream();  // Send the data.  newStream.Write(data,0,data.Length);  newStream.Close();  // Get response  HttpWebResponse myResponse=(HttpWebResponse)myRequest.GetResponse();  StreamReader reader = new StreamReader(response.GetResponseStream(),Encoding.Default);  string content = reader.ReadToEnd();  Console.WriteLine(content);
你可能感兴趣的文章
[鸟哥linux视频教程整理]04_02_Linux 权限及权限管理
查看>>
Linux运维工程师面试题第三套
查看>>
商务智能的需求驱动
查看>>
ThinkPad预装win8系统机型安装win7系统的操作指导
查看>>
JS高效关键字搜索---转
查看>>
PowerShell【变量篇】
查看>>
CSVN部署安装,实现web管理svn
查看>>
10-python-字典
查看>>
Codeforce915C
查看>>
2、内核的配置和移植
查看>>
BZOJ2115:[WC2011] Xor(线性基)
查看>>
BZOJ4520:[CQOI2016]K远点对(K-D Tree)
查看>>
Cassandra create a new user
查看>>
npm package
查看>>
elk系列4之kibana图形化操作【转】
查看>>
逆向project实战--Acid burn
查看>>
Renascence架构介绍——文件夹
查看>>
找不到包含 OwinStartupAttribute 的程序集
查看>>
Ubuntu 16.04安装网络流量监控工具Netspeed(附带10款最佳的指示器工具)
查看>>
Apache Solr-6.0.1 (OpenLogic CentOS 7.2)
查看>>