I'm trying to create a login page in which I'm trying to use Form Authentication hash function but I'm getting this error message
FormsAuthentication.HashPasswordForStoringInConfigFile(string, string) is obsolete: the recommended alternative is to use membership APIs, such as Membership.CreateUser.....
Anyone please tell me what is wrong here and how fix this. Also if there is any alternate way to hash my passwords before storing it in db please let me know. I'm using
Visual Studio 2015 pro
asp.net web site project
my declaration
string ax = FormsAuthentication.HashPasswordForStoringInConfigFile(_inPASSWORD.Text, "MD5");