.NET中获取字符串的MD5码

C# 代码:

导入命名空间(需要在Web页面的代码页中引用)

 using System.Web.Security;

获取MD5码

string Password = FormsAuthentication.HashPasswordForStoringInConfigFile(TextBox1.Text.ToString(), "MD5");

 

posted on 2014-01-06 11:12  Error503  阅读(92)  评论(0编辑  收藏  举报

导航