Click here to Skip to main content
15,878,748 members
Articles / Web Development / HTML
Article

ASP.NET Dynamic XML Web Menu Control based on JavaScript

Rate me:
Please Sign up or sign in to vote.
4.00/5 (30 votes)
22 Sep 20052 min read 440.1K   7K   92   105
ASP.NET dynamic XML web menu control based on JavaScript.

Image 1

Introduction

This is a free web based menu (JavaScript enabled) control. There are not many web menu controls available that support dynamic menu creation and binding. This WebMenu control supports dynamic menu creation, XML menu binding and also DataSet binding. This control uses triga (free script) JavaScript menu internally. Any complex menu structure can be represented using a simple XML schema. Menu position and style can be easily applied and changed dynamically without affecting the web application.

Steps to setup WebMenu

  1. Create a new ASP.NET web project, right click on ToolBox; choose 'Add/Remove items' and add the SuperControls.WebMenu.dll reference (compile SuperControls.WebMenu.cproj to get the DLL).
  2. Copy the JS files menu_tpl.js and menu.js to the root directory of the site.
  3. Copy menu stylesheet menu.css file to the subdirectory css.
  4. Copy menudata.xml to the root directory.
  5. Create an ASPX file and drag and drop the WebMenu control to the WebForm and use one of the methods (given below) to bind the XML/dynamic data to the menu control.

ASPX Code

HTML
<cc1:WebMenu id="WebMenu1" MenuXMLPath="\\ServerName\rad\menudata.xml" 
                                        PadWidth="24" runat="server">
</cc1:WebMenu>
<!--
Other samples
//**********************************************************************
<cc1:WebMenu id="WebMenu2" MenuXMLPath="ServerName\rad\menudata.xml" 
                      ImageArrow="<img src=images\\arrow.gif border=0" 
                      PadWidth="22" runat="server">
</cc1:WebMenu>
<cc1:WebMenu id="WebMenu3" MenuXMLPath="\\ServerName\rad\menudata.xml" 
                           ImageArrow="" PadWidth="26" runat="server">
</cc1:WebMenu>
-->

Ways of binding menu items dynamically...

Method 1

Set MenuXMLPath property with the path of the XML menu file in the server.

Method 2

Create new DataSet with the XML file and bind to the web menu control.

For example:

C#
DataSet dsMenu = new DataSet();
dsMenu.ReadXml(@"\\ServerName\rad\menudata.xml");
WebMenu1.DataSource = dsMenu;

Method 3

Get the menu data from database and populate the DataSet with the following structure:

  • Column 1 : menuid (unique ID of menu item).
  • Column 2 : name (name of the menu item).
  • Column 3 : root (parent of the menu item. If it is the starting/root item then the root value will be "" else it will be the value of the parent menuid).
  • Column 4 : url (URL for the menu item).

For example:

C#
WebMenu1.DataSource = dsMenu;
// (Sample DataSet is given below.)

XML menu file (sample)

XML
<?xml version="1.0" encoding="utf-8" ?> 
<menu>
    'Level 0 nodes
    <menuitem root="" name="Search Sites" menuid="1" />
    <menuitem root="" name="Webmail Sites"  menuid="2" />
    <menuitem root="" name="DotNet Sites"  menuid="3" />
    
    'Level 1 Items
    <menuitem root="1" name="Google" url="http://www.google.com" 
                                                        menuid="11"/>
    <menuitem root="1" name="Altavista" url="http://www.Altavista.com" 
                                                        menuid="12"/>
    
    'Level 1 Items
    <menuitem root="2" name="Hot-mail" url=""  menuid="21"/>
        'Level 2 Items
        <menuitem root="21" name="Hotmail" url="http://www.hotmail.com" 
                                                          menuid="211"/>
        <menuitem root="21" name="MSN" url="http://www.MSN.com" 
                                                          menuid="212"/>
        
    <menuitem root="2" name="Yahoo" url="http://www.yahoo.com" 
                                                           menuid="22"/>
    <menuitem root="2" name="Rediff" url="http://www.rediff.com" 
                                                           menuid="23"/>
    
    'Level 1 Items
    <menuitem root="3" name="Microsoft" url="http://www.Microsoft.com" 
                                                           menuid="31"/>
    <menuitem root="3" name="GotDotNet" url="http://www.GotDotNet.com" 
                                                           menuid="32"/>
    <menuitem root="3" name="CodeProject" url="http://www.CodeProject.com" 
                                                           menuid="33"/>
    <menuitem root="3" name="ASpdotnet" url="http://www.ASpdotnet.com" 
                                                           menuid="34"/>
    
</menu>

In the above sample, the root attribute represents the parent of the menu item. The root attribute will be empty for parent/level zero menu items.

Sample dynamic menu DataSet (with one DataTable)

rootnamemenuidurl
Search Sites1
Webmail Sites2
DotNet Sites3
1Google11http://www.google.com
1Altavista12http://www.Altavista.com
2Hot-mail21
21Hotmail211http://www.hotmail.com
21MSN212http://www.MSN.com
2Yahoo22http://www.yahoo.com
2Rediff23http://www.rediff.com
3Microsoft31http://www.Microsoft.com
3GotDotNet32http://www.GotDotNet.com
3CodeProject33http://www.CodeProject.com
3ASpdotnet34http://www.ASpdotnet.com

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Arab Emirates United Arab Emirates
Software Engineer from India,Working in .NET for 2 years.

Comments and Discussions

 
GeneralMy vote of 5 Pin
royal_king4-Apr-13 21:30
royal_king4-Apr-13 21:30 
Questionmain root url Pin
egyptmaaaaan28-Jan-12 23:27
egyptmaaaaan28-Jan-12 23:27 
GeneralMy vote of 3 Pin
bhargavpp15-Aug-11 23:28
bhargavpp15-Aug-11 23:28 
GeneralMenu is undefined Pin
Deepak BOB12-Jul-10 19:39
Deepak BOB12-Jul-10 19:39 
GeneralMasterPage Error Pin
wallaces52829-Nov-09 16:53
wallaces52829-Nov-09 16:53 
GeneralI cant see the menu Pin
Koval_Prad6-Oct-09 4:18
Koval_Prad6-Oct-09 4:18 
Generalcant see anything Pin
nandakumarse1-Jul-09 23:40
nandakumarse1-Jul-09 23:40 
Generalmenus position [modified] Pin
sooberfellow30-Jun-09 21:15
sooberfellow30-Jun-09 21:15 
GeneralOracle connectivity Pin
kvalli15-Apr-09 22:32
kvalli15-Apr-09 22:32 
QuestionHow can i set the target frame.. Pin
ryanjoseph8-Feb-09 14:53
ryanjoseph8-Feb-09 14:53 
GeneralMicrosoft JScript runtime error: 'menu' is undefined Pin
Member 161041523-Nov-08 20:14
Member 161041523-Nov-08 20:14 
Generalunable to download the zipped file Pin
Member 420613213-Aug-08 18:50
Member 420613213-Aug-08 18:50 
Generalset menu as vertical and horiz Pin
ramakrishna_yl18-Nov-07 21:25
ramakrishna_yl18-Nov-07 21:25 
GeneralThank u a lot Pin
ramakrishna_yl24-Oct-07 0:50
ramakrishna_yl24-Oct-07 0:50 
AnswerRe: Thank u a lot Pin
Deepak BOB12-Jul-10 19:37
Deepak BOB12-Jul-10 19:37 
GeneralSystem.StackOverflowException Pin
ramakrishna_yl23-Oct-07 23:50
ramakrishna_yl23-Oct-07 23:50 
QuestionCan not see anything Pin
alexaz112-Oct-07 9:28
alexaz112-Oct-07 9:28 
Generalkewl Pin
chullan20-Jun-07 20:49
chullan20-Jun-07 20:49 
GeneralPlease Inform me Pin
Prapthi25-Mar-07 23:17
Prapthi25-Mar-07 23:17 
GeneralGiving ERROR menu is undefined Pin
swapnali.mankar16-Mar-07 0:45
swapnali.mankar16-Mar-07 0:45 
GeneralRe: Giving ERROR menu is undefined Pin
andreflip19-Apr-07 9:28
andreflip19-Apr-07 9:28 
GeneralRe: Giving ERROR menu is undefined Pin
solrac005-Feb-10 5:24
solrac005-Feb-10 5:24 
GeneralTigra Menu Pin
treputt2-Mar-07 6:16
treputt2-Mar-07 6:16 
Questionneed object in menu.js 78 [modified] Pin
hihba6-Feb-07 15:42
hihba6-Feb-07 15:42 
Joketanx Pin
Juan Carlos Guillén Zurita2-Feb-07 5:43
Juan Carlos Guillén Zurita2-Feb-07 5:43 

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.