I am developing an application that will support several departments in our organization, and want to define what data is accessible by AD Groups a user is in.
My question is, is it more cost effective resource wise (bandwidth, time slices, etc) to use an IsUserInRole()
call at each decision point or to load several Session[]
variables at user login which are Boolean and use those throughout my code?
Thoughts?