Posted on: 3/3/2014 2:08:21 PM | Views : 689

Hi
I used the following link
http://aspsnippets.com/Articles/Using-ASPNet-Menu-control-with-example-in-C-and-VBNet.aspx
given by you
Thanks for that
I created new menu item 'Supervisor' in Web.sitemap.in the database table i created new role 'Supervisor' and assigned to employee
I created new folder 'supervisor' with Home1.aspx and given rights in web.config inside supervisor folder
as
<?xml version="1.0"?>
<configuration> <system.web> <authorization> <allow roles="Supervisor"/> <deny users="*"/> </authorization> </system.web> </configuration> in web.sitemap <?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="" title="Home&qu ...

Go to the complete details ...