.NET 2.0 Membership

martialarts

Regular
Joined
Jun 20, 2003
Messages
59
Location
Chicago Area
Hi. I have 2 web applications that share users. Only one of the apps is currently .NET 2.0 and I need the .NET 1.1 app to add users to the aspnetdb tables for the .NET 2.0 app to read. The Membership and Roles classes both have a scope of the app they are called from within, so the application you want to add the users to is not a parameter. I can call the stored procedure dbo.aspnet_Membership_CreateUser directly but am wondering if there is a cleaner solution such as another class I'm not aware of.

Thanks!
 
It might be easiest to create a .Net web service that deals with the .Net 2 Membership / Role providers and then just call this service from your .Net 1.1 application.
 
Back
Top