RolesProvider asp.net mvc
Does public override string[] GetRol开发者_运维技巧esForUser(string userId)
always call to the database on every page load? How do I lower the database calls just to check the roles? Will it cause any security problems if it is cached?
You can store them in a cookie using cacheRolesInCookie.
http://msdn.microsoft.com/en-us/library/ff647401.aspx
精彩评论