Forms authentication

  • Thread starter Thread starter Phil Townsend
  • Start date Start date
P

Phil Townsend

I am using forms authentication which accesses roles from a SQL server
table. Everything works as intended, but we would like to be able to
take this a step further and define some priviledges, such as read,
write, etc. Is this possible in the given scenario?
 
Phil,

You already have everything that you need to do that. For example, if
you have a role, administrators, and you want to grant permissions to read
and write, you should have two roles then, administrators that read, and
administrators that write, and assign the members appropriately. Then, you
can divy up your code according to the operation (or check the appropriate
role).

Hope this helps.
 
Back
Top