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
2009-10-16 20:13:24