Reputation: 2303
I have an asp.net application which is using form authentication, asp.net membership provider (ASP.NET 2.0).
Now I am creating another application which will use the same database to login into the application (ASP.NET 4.0).
how can I do it in simplest way?
Upvotes: 0
Views: 55
Reputation: 395
You can use same provider on both applications. Simply copy <membership> and corresponding <connectionString> sections from first to second application's web.config file.
Upvotes: 1