using System.Web.Security;

 

public string encodepwd(string pwd)
{
    
string enpwd = FormsAuthentication.HashPasswordForStoringInConfigFile(pwd, "md5");
    
return enpwd;
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-05
  • 2021-07-26
  • 2022-12-23
  • 2021-10-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案