标签:style blog http color os ar div sp log
1、发送Get请求
public static string HttpGet(string Url, string postDataStr) { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url + (postDataStr == string.Empty ? string.Empty : "?") + postDataStr); request.Method = "GET"; request.ContentType = "text/html;charset=UTF-8"; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream myResponseStream = response.GetResponseStream(); StreamReader myStreamReader = new StreamReader(myResponseStream, Encoding.GetEncoding("utf-8")); string retString = myStreamReader.ReadToEnd(); myStreamReader.Close(); myResponseStream.Close(); return retString; }
2、接受Get请求
string str1 = HttpUtility.UrlDecode(this.Request.QueryString.ToString(), Encoding.UTF8);
标签:style blog http color os ar div sp log
原文地址:http://www.cnblogs.com/tianxue/p/3979730.html