You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you give an FBA user only rights to certain lists, libraries, folders or listitems. SharePoint automatically gives 'Restricted Access' role for the user on Web/Site-Level. The user with such rights will see the "Change Password" menu item but when he clicks it, it will show access denied.
This is because ChangePassword.aspx.cs code is simply subclassed LayoutsPageBase:
public partial class ChangePassword : LayoutsPageBase
{
}
When you give an FBA user only rights to certain lists, libraries, folders or listitems. SharePoint automatically gives 'Restricted Access' role for the user on Web/Site-Level. The user with such rights will see the "Change Password" menu item but when he clicks it, it will show access denied.
This is because ChangePassword.aspx.cs code is simply subclassed LayoutsPageBase:
with the default rights being:
adding this to the ChangePassword class:
should solve the issue (untested).
The text was updated successfully, but these errors were encountered: