摘要: 编写一个类,需要添加一些引用using System.Net;using System.Text;using System.IO;代码如下 public static CookieContainer Cook = new CookieContainer(); public static string CreatRequestGetResponse(string URL, string PostData) { HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(U... 阅读全文
posted @ 2012-11-07 16:59 Raywang80s 阅读(291) 评论(0) 推荐(0)
摘要: C#使用 Server.URLEncode编码 System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.Unicode);System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.UTF8);System.Web.HttpUtility.UrlEncode(str,System.Text.Encoding.GetEncoding("GB2312")); 解码System.Web.HttpUtility.UrlDecode(str,System.Text.En 阅读全文
posted @ 2012-11-07 16:49 Raywang80s 阅读(917) 评论(0) 推荐(0)