加密密码
第一种方法: 添加引用system.web
添加命名空间using System.Web.Security;
string result=FormsAuthentication.HashPasswordForStoringInConfigFile(this.textBox1.Text,"MD5");
第二种方法:添加命名空间using Sytem.Security.Cryptography; using System.Text;
System.Security.Cryptography.MD5 md5=new MD5CryptoServiceProvider();
byte[] old=Encoding.Default.GetBytes(this.textBox2.Text);
byte[] aaa=md5.ComputeHash(old);
string result=BitConverter.ToString(aaa).Replace("-","")