Hello,
How can I check, in ASP.NET 2.0 membership, if a given password answer
given by a user is the same as the one in the user record?
Thanks,
Miguel
Siva M - 30 Jun 2007 18:28 GMT
One way is to make the secret question as a profile property (say
SecretAnswer) and then use Profile.SecretAnswer to the user-given value. The
password may not be encrypted while storing in the profile database.
Second option is to use the Membership API (Membership.ValidateUser()).
> Hello,
>
[quoted text clipped - 3 lines]
> Thanks,
> Miguel