How to get a permission mask in Sharepoint 2007?
How to get a permission mask in Sharepoint 2007开发者_高级运维?
SPWeb web_current = SPControl.GetContextWeb(Context);
Int64 decValue = (Int64) web_current.EffectiveBasePermissions;
return decValue.ToString("X");
精彩评论