for security reason, what is the minimum access level the asp.net membership user could have?
Asked
Active
Viewed 614 times
2 Answers
2
Better to use the application roles provided in the database.
These are documented on MSDN in page "Roles and Views in the Application Services Database for SQL Server". This includes which operations require which role.
NB. You can also use SQL Management Studio to look at what is secured for each of the roles.

Richard
- 106,783
- 21
- 203
- 265
1
Based on my investigations over here: ASP.Net Membership.DeleteUser, the user would need SELECT and EXECUTE permissions.