ASP.NET 成员资格需要的 SQL Server 最低访问级别是多少?
出于安全原因,asp.net 会员用户可以拥有的最低访问级别是多少?
for security reason, what is the minimum access level the asp.net membership user could have?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好使用数据库中提供的应用程序角色。
这些记录在 MSDN 页面 “SQL Server 应用程序服务数据库中的角色和视图”页面中。 这包括哪些操作需要哪些角色。
注意。 您还可以使用 SQL Management Studio 查看每个角色的安全保护内容。
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.
根据我在这里的调查:ASP.Net Membership.DeleteUser,用户需要 SELECT 和执行权限。
Based on my investigations over here: ASP.Net Membership.DeleteUser, the user would need SELECT and EXECUTE permissions.