Unique web site administration tool

155 Views Asked by At

i'd like to create a Unique Web Site Administration Tool (UWSAT) to admin all users for all my websites on production server.

Basically the idea is to have the UWSAT with only an admin user; when the admin log the tool he could navigate the applications, select one and see its users . He could add new user to an existing application, or create a user specifying a new application name (as far as i know that create the application too).

The problem i'm facing is that to add a user to an application i have to set the Membership.ApplicationName but i read this should be avoided.

So i ask you : should i create a different MembershipProvider for each application and call it when i have to manage users for that application?

Thanks.

1

There are 1 best solutions below

2
On

I recommend creating a role, and assigning it to the users. The role would be the application they should have access to.

The RoleProvider is one way to do this.