摘要:
手工发送HTTP请求主要是调用System.Net的HttpWebResponse方法 手工发送HTTP的GET请求: string strURL = 'http://localhost/Play/CH1/Service1.asmx/doSearch?keyword='; strURL +=this.textBox1.Text; System.Net.HttpWebRequest request; //创建一个HTTP请求 request = (System.Net.HttpWebRequest)WebRequest.Create(strURL); //request.Meth 阅读全文
posted @ 2010-09-02 20:00 codingsilence 阅读(474) 评论(0) 推荐(0) 编辑