Looking for some guidance on this issue (below is a parallel example):
I have a view in which I need to display a list of basic user information (e.g. First Name/Last Name) per row. In addition, I need to provide a list of check boxes for that represent permission levels for each user. The list of possible permissions is the same for everyone; however, needs to be dynamically driven by the database since different permission sets may be added or removed.
So...I have a list of users, and a common yet variable list of permissions that needs to be tracked per user.
What's the best way to manage this from an object bind standpoint in a ASP.Net view?