3

I would like to verfiy a password, stored by SimpleMembership Provider. I have a website, made with ASP.NET 4.0 MVC using SimpleMembership and a backend admin tool made with ASP.NET WebForms 4.0. Due to the fact, that SimpleMembership needs ASP.NET 4.5, i would like to verify the login password by myself instead of updating the whole admin website to v4.5.

How to do that?

tereško
  • 58,060
  • 25
  • 98
  • 150

1 Answers1

3

Just call Membership.ValidateUser(username, password)

Erik Funkenbusch
  • 92,674
  • 28
  • 195
  • 291