开发者

asp.net application with windows authentication and custom membership provider advice

开发者 https://www.devze.com 2023-02-11 19:23 出处:网络
I’ve been asked to upgrade a few applications and I’m planning on merging all of them into one asp.net application. I’m fine with this decision and have spoken with fellow workers and they also thi

I’ve been asked to upgrade a few applications and I’m planning on merging all of them into one asp.net application. I’m fine with this decision and have spoken with fellow workers and they also think it’s the best option to go with.

The application will be accessed from a small group of users which belong to a larger domain. I’m currently planning on using Windows authentication and only allow this small set of users to access the asp.net application. Also there must be some role management, so that only certain users can view certain functionality.

I really don’t want to have many different windows groups; so I want to avoid having to assign different windows groups to different folders and control permissions in the web.config.

What 开发者_开发问答I’d like to do is: - Assign one windows group to the small group of users who will access the page. - Create a custom membership provider and control the user who accesses the application. Depending on the user I will then assign his current set of roles. - Add an application setting to the web.config, with the name of the current administrator, so if he logs in, he will be assigned all roles, and will be able to create and assign roles to other users.

I’d appreciate some advice if this would be the correct way to go about this.

Thanks!


I would check out the AccountManagement Namespace.

I like to use this. You can create a global security group (one for each 'role'). The account management namespace will allow you to fetch the UserPrincipal from AD with their logon name from the http context. Then you can check them for memebership in the security groups you created using the .IsMemberOf Method.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号