Click here to Skip to main content
15,878,748 members
Articles / Web Development / ASP.NET
Tip/Trick

Dynamically populating menu items from the database in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.83/5 (30 votes)
28 Mar 2012CPOL2 min read 345.8K   12.3K   41   48
Creating a Menu and populating items from a database dynamically after user login in ASP.NET.

Introduction

In this article, you will learn how to populate menu items dynamically from a database. The dynamicity of the Menu control is particularly useful when you need to restrict users from using some specific menu items.

Menu Table Structure in Database

 

Creating the Database Tables 

You will need a table in the database to store the MenuItems

Menu Table Structure in Database

Here, the MenuLocation column contains the URL of the target page when the corresponding menu item is clicked. 

Sample data(For Reference):  

Step 1: You need to specify some parent menu items with parentid = 0

Step 2: You can then assign submenuitems to these parents

For instance consider the following structure-

SQL
MenuID  MenuName    MenuLocation ParentID
  1	ParentItem1	NULL	   0
  2	ParentItem2	NULL	   0
  3	ParentItem3	NULL	   0
 11	SubMenuItem1	NULL	   1
 12	SubMenuItem2	NULL	   1
 21	SubMenuItem3	NULL	   2

Here ParentItem1,2,3 are Parents and SubMenuItem1,2,3 are their childs as specified.
 
As far as MenuLocation Column is conerned you can assign urls in it e.g Default.aspx or User/NewUserAdd.aspx etc. according to the directory structure of your application. 

MasterPage

Step 1: Place the ASP.NET Menu control in the MasterPage.

XML
<div class="MenuBar">
	<asp:Menu ID="menuBar" runat="server" Orientation="Horizontal" Width="100%">
		<DynamicHoverStyle CssClass="DynamicHover" />
		<DynamicMenuItemStyle CssClass="DynamicMenuItem" />
		<DynamicSelectedStyle CssClass="DynamicHover" />

		<StaticHoverStyle CssClass="staticHover" />
		<StaticMenuItemStyle CssClass="StaticMenuItem" ItemSpacing="1px" />
		<StaticSelectedStyle CssClass="staticHover" />
	</asp:Menu>
</div>

MasterPage Code-Behind

Step 2: Using the following code, you are pulling the menu and submenu from the database in proper order. Call the following function from the Page_Load event of the MasterPage when !IsPostBack.

C#
private void getMenu()
{
    Connect();
    con.Open();
    DataSet ds = new DataSet();
    DataTable dt = new DataTable();
    string sql = "Select * from tbl_WebMenu";
    SqlDataAdapter da = new SqlDataAdapter(sql, con);
    da.Fill(ds);
    dt = ds.Tables[0];
    DataRow[] drowpar = dt.Select("ParentID=" + 0);

    foreach (DataRow dr in drowpar)
    {
        menuBar.Items.Add(new MenuItem(dr["MenuName"].ToString(), 
                dr["MenuID"].ToString(), "", 
                dr["MenuLocation"].ToString()));
    }

    foreach (DataRow dr in dt.Select("ParentID >" + 0))
    {
        MenuItem mnu = new MenuItem(dr["MenuName"].ToString(), 
                       dr["MenuID"].ToString(), 
                       "", dr["MenuLocation"].ToString());
        menuBar.FindItem(dr["ParentID"].ToString()).ChildItems.Add(mnu);
    }
    con.Close();
}

Points of Interest

This type of menu population is particularly useful when both the user count and menu item count are variable because you can set the access permissions (restricting users from accessing some pages at runtime) which will be described in the next article.

Note

The menu control may not work as  intended in some browsers such as chrome. So in that case you may have to add a '.browser' file under 'App_Browsers' folder of your project.

Image 3

Open file safari.browser from Solution Explorer and remove all the code clear and add the following:

XML
<browsers>
  <browser refID="safari1plus">
    <controlAdapters>
      <adapter controlType="System.Web.UI.WebControls.Menu" adapterType="" />
    </controlAdapters>
  </browser>
</browsers>

Save the safari.browser file and there you go..

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
I'm a ASP.NET and C# programmer with interests in playing games such as Unreal Tournament, FIFA and listening to rap music that have meaningful lyrics...Smile | :)

Comments and Discussions

 
GeneralMy vote of 5 Pin
vijaydanielj6-Sep-12 19:58
vijaydanielj6-Sep-12 19:58 
Questionhow can display and add 4-th level of menu items ? Pin
kksingh.hrp21-Aug-12 1:29
kksingh.hrp21-Aug-12 1:29 
AnswerRe: how can display and add 4-th level of menu items ? Pin
Prabhat Spark21-Aug-12 1:39
professionalPrabhat Spark21-Aug-12 1:39 
Generalhow to get submenus menu Pin
Umapathi K3-Aug-12 22:02
Umapathi K3-Aug-12 22:02 
AnswerRe: how to get submenus menu Pin
Prabhat Spark5-Aug-12 5:13
professionalPrabhat Spark5-Aug-12 5:13 
QuestionHow do I use the MenuLocation data to call .aspx Pin
Rudy Razo29-Jun-12 9:12
Rudy Razo29-Jun-12 9:12 
AnswerRe: How do I use the MenuLocation data to call .aspx Pin
Prabhat Spark29-Jun-12 19:07
professionalPrabhat Spark29-Jun-12 19:07 
QuestionHow to generate submenu under submenu? Pin
sahabiswarup28-Jun-12 23:14
sahabiswarup28-Jun-12 23:14 
From these above code one menu and submenu's are genarated; but if anyone want to generate submenu under a submenu how to do that?
AnswerRe: How to generate submenu under submenu? Pin
Prabhat Spark29-Jun-12 19:04
professionalPrabhat Spark29-Jun-12 19:04 
QuestionMulti Level Hierarchy Pin
ernestmachado19-Jun-12 0:08
ernestmachado19-Jun-12 0:08 
QuestionNeed help for dynamic Menu items Pin
madhupembarthi28-Mar-12 1:54
madhupembarthi28-Mar-12 1:54 
AnswerRe: Need help for dynamic Menu items Pin
Prabhat Spark28-Mar-12 2:16
professionalPrabhat Spark28-Mar-12 2:16 
GeneralRe: Need help for dynamic Menu items Pin
madhupembarthi28-Mar-12 3:18
madhupembarthi28-Mar-12 3:18 
GeneralRe: Need help for dynamic Menu items Pin
Prabhat Spark28-Mar-12 5:35
professionalPrabhat Spark28-Mar-12 5:35 
GeneralRe: Need help for dynamic Menu items Pin
Member 430475620-May-12 14:11
Member 430475620-May-12 14:11 
AnswerRe: Need help for dynamic Menu items Pin
Prabhat Spark20-May-12 19:17
professionalPrabhat Spark20-May-12 19:17 
GeneralRe: Need help for dynamic Menu items Pin
ernestmachado19-Jun-12 1:01
ernestmachado19-Jun-12 1:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.