摘要: /// /// 关键字替换 /// /// /// public string TagReplace(string body) { string[] begin = this.txtTagBegin.Text.Split('|'); ... 阅读全文
posted @ 2017-06-12 10:00 懒人境界 阅读(4353) 评论(0) 推荐(0) 编辑
摘要: string body = PostWebRequest(txtURL.Text, textBox2.Text); if (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); ... 阅读全文
posted @ 2017-06-12 09:58 懒人境界 阅读(1214) 评论(0) 推荐(0) 编辑
摘要: /// /// Post提交数据 /// /// URL /// 参数 /// private string PostWebRequest(string postUrl, string paramData) { string ret = s... 阅读全文
posted @ 2017-06-12 09:57 懒人境界 阅读(11723) 评论(0) 推荐(0) 编辑
摘要: /// 从字符串转换到16进制表示的字符串 /// 编码,如"utf-8","gb2312" /// 是否每字符用逗号分隔 public static string ToHex(string s, string charset, bool fenge) { if ((s.Length % 2) != 0... 阅读全文
posted @ 2017-06-12 09:54 懒人境界 阅读(14674) 评论(0) 推荐(0) 编辑