views:

128

answers:

1

How to get a permission mask in Sharepoint 2007?

+1  A: 

SPWeb web_current = SPControl.GetContextWeb(Context);

Int64 decValue = (Int64) web_current.EffectiveBasePermissions;

return decValue.ToString("X");

Skip

related questions