2008年10月30日
摘要: 编码 public string EncodeBase64(string code_type,string code) { string encode = ""; byte[] bytes = Encoding.GetEncoding(code_type).GetBytes(code); try { encode = Convert.ToBase64String... 阅读全文
posted @ 2008-10-30 15:26 ItsJacky 阅读(345) 评论(0) 推荐(0)