独特的网站管理工具
我想创建一个独特的网站管理工具(UWSAT)来管理生产服务器上我所有网站的所有用户。
基本上,这个想法是让 UWSAT 只有管理员用户;当管理员登录该工具时,他可以导航应用程序,选择一个并查看其用户。他可以向现有应用程序添加新用户,或者创建指定新应用程序名称的用户(据我所知,也创建应用程序)。
我面临的问题是,要将用户添加到应用程序,我必须设置 Membership.ApplicationName 但我读到应该避免这样做。
所以我问你:我应该为每个应用程序创建一个不同的 MembershipProvider 并在我必须管理该应用程序的用户时调用它吗?
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议创建一个角色并将其分配给用户。该角色将是他们应该有权访问的应用程序。
RoleProvider 是实现此目的的一种方法。
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.