S Sebastian Apr 3, 2004 #2 blu3g85 said: how do u hash a pw and the save to the database? Click to expand... using System.Web.Security; string hashedPass = FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5 "); and just save it to the db.
blu3g85 said: how do u hash a pw and the save to the database? Click to expand... using System.Web.Security; string hashedPass = FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5 "); and just save it to the db.
G Guest Apr 3, 2004 #3 I always use this site, http://www.regexlib.com/RETester.aspx, to test my regular expressions. You can test both javascript and .NET regular expressions.
I always use this site, http://www.regexlib.com/RETester.aspx, to test my regular expressions. You can test both javascript and .NET regular expressions.
B blu3g85 Apr 4, 2004 #4 what does MD5 stands 4? Sebastianwrote: Click to expand... blu3g85 said: how do u hash a pw and the save to the database? Click to expand... using System.Web.Security; string hashedPass = FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5 "); and just save it to the db.
what does MD5 stands 4? Sebastianwrote: Click to expand... blu3g85 said: how do u hash a pw and the save to the database? Click to expand... using System.Web.Security; string hashedPass = FormsAuthentication.HashPasswordForStoringInConfigFile(txtPassword.Text,"MD5 "); and just save it to the db.