摘要:
string body = PostWebRequest(txtURL.Text, textBox2.Text); if (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { Application.DoEvents(); ... 阅读全文
摘要:
/// /// Post提交数据 /// /// URL /// 参数 /// private string PostWebRequest(string postUrl, string paramData) { string ret = s... 阅读全文
摘要:
/// 从字符串转换到16进制表示的字符串 /// 编码,如"utf-8","gb2312" /// 是否每字符用逗号分隔 public static string ToHex(string s, string charset, bool fenge) { if ((s.Length % 2) != 0... 阅读全文