惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
宝玉的分享
宝玉的分享
小众软件
小众软件
有赞技术团队
有赞技术团队
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
MongoDB | Blog
MongoDB | Blog
WordPress大学
WordPress大学
J
Java Code Geeks
罗磊的独立博客
V
Visual Studio Blog
雷峰网
雷峰网
H
Help Net Security
T
The Blog of Author Tim Ferriss
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
F
Fortinet All Blogs

博客园 - 天生舞男

多个平均数列的子查询 迁移sharepoint Sharepoint迁移数据库之绝版(只要照着做,一定能够迁移成功) Sharepoint的webpart 虚函数和非虚函数的调用基本原则 The visio to drawing project chart. - 天生舞男 Using MSChart from a C# WinForm About the deeply copy 学习程序的自我建议---从实际软件的源代码开始学习 MS bug "The connection pool" in Oracle 10g and the data sort according to specified filed on DataGrid control. Post method tip automation服务器不能创建对象 Get the biggest common divisor rose破解 ArrayList按Index删除的问题 Recently expection RadioButtonList中选择框和文字对不齐的解决办法 resolve problem best method is find document from official document 看了宝玉的作品,心理甚是感叹
How to get response content with specified post data by p...
天生舞男 · 2006-03-08 · via 博客园 - 天生舞男


                ''~``
                        ( o o )
+------------------.oooO--(_)--Oooo.---------------------+
| Li xiaojian                                            |
|                       E-mail: joblxj@163.com           |
| Fake Company          www.intechno.com                 |
| beijing, china     (   )                               |
+---------------------\ (----(   )-----------------------+
                       \_)    ) /
                             (_/
private void QueListSubmit_Click(object sender, System.EventArgs e)
  {
   divQueListData.InnerHtml = "";
   string strUser = tbxUser.Text;
   string strHost = tbxHost.Text;
   string strResult = string.Empty;
   string strPostData = "User=" + strUser + "&Host=" + strHost;
   string strdesc="";
   HttpStatusCode code = 0;

   HttpWebResponse myResponse = null;
   HttpWebRequest myRequest = null;

   try
   {
    string httpURI = tbxTestURL.Text;
    myRequest = (HttpWebRequest)WebRequest.Create(httpURI);
    myRequest.Method = "POST";
    myRequest.ContentType="application/x-www-form-urlencoded";    
    
    Encoding encoder = System.Text.Encoding.GetEncoding("utf-8");
    byte[] byteArray = encoder.GetBytes(strPostData);
    Stream myGetRequestStream = myRequest.GetRequestStream();
    myGetRequestStream.Write(byteArray, 0 , byteArray.Length);
    myGetRequestStream.Close();
    
    myResponse = (HttpWebResponse)myRequest.GetResponse();
    Stream ReceiveStream = myResponse.GetResponseStream();
    code = myResponse.StatusCode;
    strdesc = myResponse.StatusDescription;
    StreamReader sr = new StreamReader(ReceiveStream, encoder);
    Char[] read = new Char[256];
    int count = sr.Read( read, 0, 256 );
    while (count > 0)
    {
     String str = new String(read, 0, count);
     strResult += str;
     count = sr.Read(read, 0, 256);
    }
    divQueListData.InnerHtml = "<pre>"+strResult+"</pre>";
   }
   catch(WebException ex)
   {
    code = ((HttpWebResponse)ex.Response).StatusCode;
    strdesc = ((HttpWebResponse)ex.Response).StatusDescription;
   }
   divQueListData.InnerHtml += "<br>Http Status Code = " + code.ToString() + "</br>";
   divQueListData.InnerHtml += "<br>Http Status Description = "+ strdesc.ToString() +"</br>";
  }