The new MVC4 RTM internet application templates use the SimpleMembership providers as descibed here SimpleMembership
My existing MVC website uses the ASP.Membership framework and ideally I would like to migrate the user data in these tables to the new SimpleMembership tables. My reasons for wanting to do this are:
So I wrote a SQL script today to migrate the data in the existing ASP.Net Membership tables into the new Simple Membership tables. This can be found here
Testing the login in my MVC 4 website the password verification is failing. I believe the SimpleMembership uses a different password algo than the old Membership framework as new passwords created under the SimpleMemberShip framework look a lot longer.
So my question is since I was using the "hashed" password format in the old ASP.Net membership providers and the users original password is irretrievable, what options do I have to get the SimpleMembership provider working.
I guessing some options are:
I would suspect many people are also looking to migrate their existing membership databases to the new SimpleMemberShip provider.
Any help greatly appreciated.
Cheers
Jim
I'd like to surface Paul's comment in case anyone misses it and suggest his solution is the best I've seen.
http://pretzelsteelersfan.blogspot.com/2012/11/migrating-legacy-apps-to-new.html
Thanks Paul