1

for security reason, what is the minimum access level the asp.net membership user could have?

Mehrdad Afshari
  • 414,610
  • 91
  • 852
  • 789
Fredou
  • 19,848
  • 10
  • 58
  • 113

2 Answers2

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.

Community
  • 1
  • 1
Irwin
  • 12,551
  • 11
  • 67
  • 97