TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
check if user has full permissions for Sharepoint List
Sagar Pardeshi
Jun 20
2014
Code
1.1
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
SPUser user = SPContext.Current.Web.CurrentUser;
SPWeb oWeb = SPContext.Current.Web;
SPList oList = oWeb.Lists["MyList];
string
status=
string
.Empty;
if
(oList !=
null
)
{
if
(oList.DoesUserHavePermissions(user, SPBasePermissions.FullMask))
{
status =
"Administrator"
;
}
else
{
status= =
"NonAdministrator"
;
}
}
full permissions for Sharepoint List