dynamicaly add menu itmes to asp:Menu

4.6k Views Asked by At

I have a defined asp:Menu in design time in the master page.

I want to in the master page code behind in the page-load event a check that if the user is in the developer role, then they will get an additional set of menu items.

how do i use c# to add menu items from the code behind to the asp:menu?

i am not using a site map provider!

3

There are 3 best solutions below

2
On BEST ANSWER

place this in your code behind:

Menu1.Items.Add(new MenuItem("Text", "Value"));
0
On

Sometimes MSDN is your best bet: http://msdn.microsoft.com/en-us/library/ecs0x9w5(VS.80).aspx - all about the Menu control :-)

0
On

Are you using a sitemap provider to populate your Menu?

If so, add a roles attribute to all the nodes you want displaying if a user is a Developer.

E.g.

<siteMapNode title="Home" url="~/Developer/Default.aspx" roles="Developer" />

Then in your Menu ItemDataBound event carry out a check to see if logged in user is a developer. The appropriate nodes will be displayed.