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;
}

浙公网安备 33010602011771号