user239684
user239684

Reputation: 349

Security for ASP.NET application

I am developing a .net based application which is for a financial institution and it has multiple roles so I am not using built in ROLE PROVIDER.

Now what i want is that when create user i just assign role and when user logs in with the assigned role he/she cannot open any form on which he/she has no rights.

How to come up with a role based security system for my application ? I would appreciate if someone can help me and guide me to come up with a strong and secure application.

Thanks

Upvotes: 3

Views: 329

Answers (3)

Akram Shahda
Akram Shahda

Reputation: 14781

Read the following article:

Introduction to Role-Based Security in .NET

Upvotes: 2

user492238
user492238

Reputation: 4084

If the links posted in the other answer are too many to start with, try reading that article from MS: http://msdn.microsoft.com/en-us/magazine/cc301390.aspx

Upvotes: 1

sikender
sikender

Reputation: 5921

I think you need to take a look at the Membership API.

This blog post from Scott Guthrie has links to several resources to help you get started.

http://weblogs.asp.net/scottgu/archive/2006/02/24/asp.net-2.0-membership_2c00_-roles_2c00_-forms-authentication_2c00_-and-security-resources-.aspx

Upvotes: 4

Related Questions