MD5加密函数
using System.Web.Security;
public string encodepwd(string pwd)
{
string enpwd = FormsAuthentication.HashPasswordForStoringInConfigFile(pwd, "md5");
return enpwd;
}
{
string enpwd = FormsAuthentication.HashPasswordForStoringInConfigFile(pwd, "md5");
return enpwd;
}