先using System.Security.Cryptography;引用命名空间
byte[] result = Encoding.Default.GetBytes(this.txtPwd.Text.Trim()); //将字符串转换成字节 //txtPwd为文本框的Name
MD5 md5 = new MD5CryptoServiceProvider(); byte[] output = md5.ComputeHash(result);//MD5加密 string pwd1 = BitConverter.ToString(output).Replace("-", ""); //获取加密后的字符串 (字母为大写)//用string类型pwd1接收 string pwd = pwd1.ToLower();//将字符串转换成小写 //用string类型pwd接收字母为小写加密后的字符串