Click here to Skip to main content
15,890,579 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 346.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

 
GeneralNice Pin
Debopam Pal18-Nov-13 8:23
professionalDebopam Pal18-Nov-13 8:23 
GeneralMy vote of 5 Pin
ho.kurd25-Aug-13 5:10
ho.kurd25-Aug-13 5:10 
Questionmenu like tree view Pin
satyashri14321-Jul-13 4:32
satyashri14321-Jul-13 4:32 
QuestionHow can i create 5 submenu categories and some menu dont have? Pin
aaulhaq26-May-13 3:23
aaulhaq26-May-13 3:23 
AnswerRe: How can i create 5 submenu categories and some menu dont have? Pin
Prabhat Spark26-May-13 4:20
professionalPrabhat Spark26-May-13 4:20 
GeneralRe: How can i create 5 submenu categories and some menu dont have? Pin
aaulhaq26-May-13 6:32
aaulhaq26-May-13 6:32 
Questionhow I can request url Pin
tanliem6535-May-13 21:55
tanliem6535-May-13 21:55 
QuestionUp to which level we can create submenu Pin
nik kamble8-Apr-13 19:58
nik kamble8-Apr-13 19:58 
AnswerRe: Up to which level we can create submenu Pin
Prabhat Spark8-Apr-13 20:06
professionalPrabhat Spark8-Apr-13 20:06 
SuggestionIf I click menus I want .aspx Page Pin
RekaRamalingam5-Feb-13 23:55
RekaRamalingam5-Feb-13 23:55 
QuestionAm I missing smth? "The name 'menuBar' does not exist in the current context" Pin
TieuTrung22-Jan-13 22:11
TieuTrung22-Jan-13 22:11 
AnswerRe: Am I missing smth? "The name 'menuBar' does not exist in the current context" Pin
Prabhat Spark8-Apr-13 20:08
professionalPrabhat Spark8-Apr-13 20:08 
AnswerRe: Am I missing smth? "The name 'menuBar' does not exist in the current context" Pin
florenzdelima1-Dec-13 19:32
florenzdelima1-Dec-13 19:32 
QuestionClick event to dynamically added menu item Pin
Kunjammu4-Oct-12 0:28
Kunjammu4-Oct-12 0:28 
Questionmenu items from 2 tables? Pin
LOKImotive24-Sep-12 7:31
LOKImotive24-Sep-12 7:31 
SuggestionRe: menu items from 2 tables? Pin
Prabhat Spark24-Sep-12 19:50
professionalPrabhat Spark24-Sep-12 19:50 
Questionmenu Pin
rimjhim_414-Sep-12 1:26
rimjhim_414-Sep-12 1:26 
SuggestionRe: menu Pin
Prabhat Spark14-Sep-12 6:05
professionalPrabhat Spark14-Sep-12 6:05 
GeneralRe: menu Pin
rimjhim_419-Sep-12 23:51
rimjhim_419-Sep-12 23:51 
GeneralRe: menu Pin
rimjhim_420-Sep-12 0:44
rimjhim_420-Sep-12 0:44 
GeneralMy vote of 5 Pin
Karthik Chintala9-Sep-12 23:08
Karthik Chintala9-Sep-12 23:08 
QuestionExcellent and very simple way of adding dynamic menu Pin
vijaydanielj6-Sep-12 20:12
vijaydanielj6-Sep-12 20:12 
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 

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.