I am migrating an existing asp.net mvc application to Azure and would like to use the System.Web.Providers for membership.
Is there any existing tool or recipe to Migrate data from the ASP.Net Membership Provider to System.Web.Providers?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a post on .NET Web Development and Tools Blog
http://blogs.msdn.com/b/webdev/archive/2012/08/16/migration-for-user-accounts-from-the-sqlmembershipprovider-to-the-universal-providers.aspx
which explains in detail how to move your data and what Web.Config attributes to touch.
basically what you need is a bunch of SQL statements
You will also have to add
passwordCompatMode="Framework20"attribute to membership provider configuration.