↧
Re: How to assign the ASPX Page to list of user based on menu ID in asp.net
Hi,You can take idea from this...
View ArticleRe: How to assign the ASPX Page to list of user based on menu ID in asp.net
protected void Page_Load(object sender, EventArgs e) { if(User.IsInRole("admin")==true) { Menu1.Items[2].Enabled = true; } else { Menu1.Items[2].Enabled = false; } }
View ArticleHow to assign the ASPX Page to list of user based on menu ID in asp.net
Hi Guys,I have 3 aspx page, but i like to assign the menu(vertical menu) based on menu id (i like to use comma separated).Aspx page:1. About.aspx2.Home.aspx3.Service.aspxRole:1. Admin - 1,2,32. Guest -...
View Article