摘要: using System;using System.IO;using System.Security.Cryptography;using System.Text;namespace Common{ /// /// 采用 3DES 加解密方式。 /// public class EncryptAndDecrypte { static string strKey = "fdbc4y6hdhKlf4M3mjgGrMC3PbryXrxw"; static string strIV = "RfnMfrpec48="; /// ... 阅读全文
posted @ 2013-09-04 13:41 小さいです哥 阅读(385) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Net;using System.Net.Mail;using System.Text;namespace Common{ /// /// 基于system.net.mail发送邮件,支持附件 /// public class NetSendMail { public static void MailSend(string mailFrom, string maiFromlAccount, string mailFromPwd, ... 阅读全文
posted @ 2013-09-04 13:37 小さいです哥 阅读(337) 评论(0) 推荐(0)