Click here to Skip to main content
15,867,488 members
Articles / Web Development / IIS

Binding Menu Control With Database

Rate me:
Please Sign up or sign in to vote.
3.92/5 (6 votes)
28 Jun 2008CPOL 93.7K   2.6K   57   15
Bind the menu control with list of Category and Sub Categories
Figure 1

BindMenu1.jpg

Figure 2

BindMenu2.jpg

Introduction

In this article, I will show how to bind the menu control with the database. Suppose you have a situation to display the different Category and its Sub-Categories. When we click the Category/Sub Category (See Figure 1) to view the detail information about Category/Sub Category (See Figure 2), then this bit of code will be useful. This code prevents a post back to the server while selecting Sub Category.

Using the Code

Database Detail

Table Name - Category

BindMenu3.jpg

Table Name - SubCategory

BindMenu4.jpg

There are two tables (Category, SubCategory) which are related to each other.
Here’s the method called BindMenu which binds the menu control during the page load.

  1. Create the connection string to establish connection with the database:
    VB.NET
    Dim connectionString As String =
    WebConfigurationManager.ConnectionStrings_
    	("DatabaseConnectionString1").ConnectionString
    Dim con As New SqlConnection(connectionString)
  2. Create two DataAdapters for both the tables:
    VB.NET
    Dim dadCategories As New SqlDataAdapter("SELECT CatId,CatName FROM Category
    order by CatName", con)
    Dim dadSubCat As New SqlDataAdapter("SELECT SubCatId,CatId,SubCatName FROM
    SubCategory order by SubCatName", con)
  3. Create a DataSet and fill the dataset with both the tables:
    VB.NET
    Dim dsCat As New DataSet()
    Using con
    con.Open()
    dadCategories.Fill(dsCat, "Category")
    dadSubCat.Fill(dsCat, "SubCategory")
    End Using
  4. Relate both the tables and name the relation as Children:
    VB.NET
    dsCat.Relations.Add("Children", dsCat.Tables("Category").Columns("CatId"),
    dsCat.Tables("SubCategory").Columns("CatId")) 
  5. Loop through each category of data and its related Sub category of data. At each loop, we create menu items and associate with the menu control.
    VB.NET
    For Each categoryRow As DataRow In dsCat.Tables("Category").Rows
    Dim mNode As New MenuItem(CType(categoryRow("CatName"), String), "", "",
    "~/DetailView.aspx?CatID=" + CType(categoryRow("CatId"), String), "_parent")
    Menu1.Items.Add(mNode)
    
    Dim subCatRows() As DataRow = categoryRow.GetChildRows("Children")
    For Each row As DataRow In subCatRows
    Dim subCatName As String = CType(row("SubCatName"), String)
    Dim subCatItems As New MenuItem(subCatName, "", "",
    "~/DetailView.aspx?CatID=" + CType(row("CatId"), String) + "&SubCatID=" +
    CType(row("SubCatId"), String), "_parent")
    Menu1.Items(count).ChildItems.Add(subCatItems)
    Next
    count = count + 1
    Next

History

  • 28th June, 2009: Initial post

License

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


Written By
Web Developer Syntax Solutions Inc.
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAdding SubMenu to SubMenu Pin
bhagyap11-Jan-12 0:32
bhagyap11-Jan-12 0:32 
General5-level menu Pin
amit121212419-Dec-10 22:52
amit121212419-Dec-10 22:52 
QuestionHow find the CatID Pin
Ajeet kumar verma25-Feb-10 1:15
Ajeet kumar verma25-Feb-10 1:15 
QuestionBindMenu Pin
Member 46794646-May-09 5:44
Member 46794646-May-09 5:44 
AnswerRe: BindMenu Pin
Ajeet kumar verma25-Feb-10 1:19
Ajeet kumar verma25-Feb-10 1:19 
Generalme 2 Pin
anhduongxanh2-Apr-09 16:54
anhduongxanh2-Apr-09 16:54 
Questiongoing deeper Pin
noname-201329-Nov-08 22:18
noname-201329-Nov-08 22:18 
GeneralLayout Pin
Velvet Saunders22-Oct-08 5:27
Velvet Saunders22-Oct-08 5:27 
GeneralRe: Layout Pin
Ravi Selvaraj25-Oct-08 23:17
Ravi Selvaraj25-Oct-08 23:17 
QuestionC# Code. Pin
nirajan8-Jul-08 6:25
nirajan8-Jul-08 6:25 
AnswerRe: C# Code. Pin
Ravi Selvaraj8-Jul-08 7:11
Ravi Selvaraj8-Jul-08 7:11 
GeneralRe: C# Code. Pin
nirajan14-Jul-08 14:39
nirajan14-Jul-08 14:39 
GeneralRe: C# Code. Pin
Ravi Selvaraj14-Jul-08 16:37
Ravi Selvaraj14-Jul-08 16:37 
GeneralRe: C# Code. Pin
suma221210-Dec-12 19:12
suma221210-Dec-12 19:12 
GeneralRe: C# Code. Pin
deepikadurge7-Apr-09 21:14
deepikadurge7-Apr-09 21:14 

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.