Page 1 of 1

Security Groups

Posted: Tue May 18, 2010 1:03 pm
by mkent
How can you allow users to change passwords , but not be able to change the security group of the user?

I have read another post that covers this very well. But the problem is , once you give the user rights to the menu item through the web.config file for People/Users then he/she can change the user's group membership.

Re: Security Groups

Posted: Tue May 18, 2010 6:34 pm
by Shopping Cart Admin
Hello,

It's a post back page which changes the group assignment, so it would need to be handled with programming.

Re: Security Groups

Posted: Wed May 19, 2010 5:17 am
by mazhar
Yes it will require few custom code lines to do this. So if you are wanting it to be disabled for all users then search following statement in Admin/People/Users/EditUser.aspx file

Code: Select all

<asp:LinkButton ID="ChangeGroupListButton" runat="server" Text="Change" /> 
then update it as below

Code: Select all

<asp:LinkButton ID="ChangeGroupListButton" runat="server" Text="Change" Visible="false" /> 
Save the file and that's it.