Posted on: 8/11/2014 10:09:37 PM | Views : 307

Hi,
I created our own membership users/roles management for our website.  I need to enable user and role management access only to Administrator role.  I have a Manage Users list item displayed in Default web page.  When the list item is clicked, the user should be redirected to ManageUsers.aspx page IF he/she is in the Administrator role.
HTML Code in Default.aspx:
<ul class="menulist" style="text-align:left">  <li id="createUser" runat="server"><a href="AddUser.aspx"><span style="color:#333333">Create User</span></a></li>               <li id="mngUsers" runat="server"><a href="ManageUsers.aspx"><span style="color:#333333">Manage Users</span></a></li>  ...

Go to the complete details ...