Click here to Skip to main content
Licence CPOL
First Posted 13 Jun 2004
Views 121,733
Downloads 4,521
Bookmarked 64 times

One-Level ASP.NET Menu – FlatMenu

By | 16 Jun 2004 | Article
Simple navigation menu bar with CSS, PostBack and other features

Introduction

The simple menu can be applied foremost to navigate among several web forms. Features of the FlatMenu:

  1. One-Level menu only (no popup submenus).
  2. Rendering brief HTML code into div and span (no table tr td).
  3. Possibility to invocate of PostBack for each single menu item.
  4. No extra worthless JavaScript (except of PostBack sure).
  5. Distinguished menu item of the just loaded web form.
  6. Simple, well-arranged XML file data source in one place.
  7. Horizontal and vertical layout option.
On-line presentation is available at http://flatmenu.aspweb.cz/ [^]

Background

The control is based on the Scott Mitchell's excellent piece of software skmMenu.

Using the code

Data binding

In the Page_Load method of the Web Form

flatMenu.DataSource = Server.MapPath("FlatMenu.xml");
flatMenu.DataBind();

or caching menu to avoid access to file system by every request: in Application_Start (Global.asax.cs)

XmlDocument xmlMenu = new XmlDocument();
xmlMenu.Load(Server.MapPath("FlatMenu.xml"));
Application["flatMenu"] = xmlMenu;

and again the method Page_Load

flatMenu.DataSource = Application["flatMenu"];
flatMenu.DataBind();

XML data source

Example of the structure of the XML file:

<menu>
    <item postback="true">
        <text>
            web form
        </text>
        <url>
            WebForm.aspx
        </url>
    </item>
    <item suppresspostback="true">
        <text>
            other web form
        </text>
        <url>
            OtherWebForm.aspx
        </url>
    </item>
    <item>
        <text>
            CodeProject site
        </text>
        <url>
            http://www.codeproject.com
        </url>
    </item>
</menu>

Attribute postback means click on this menu item raises the postback. When active (current loaded) menu item has attribute supresspostback="true" then every other menu items behave as common a tag, so no postback raises.

Active menu item

The HTML tag belong to menu item of just loaded web form has this class attribute:

span class="activeHoriz", for horizontal menu layout
div class="activeVert", for vertical menu layout

CSS design

For customize design by CSS is important how the menu is rendered into the HTML code.

Horizontal rendering:

<div id="idFlatMenu">
    <span><a></a></span>
    <span class="activeHoriz"></span>
    <span><a></a></span>
</div>

Vertical rendering:

<div id="idFlatMenu">
    <div><a></a></span>
    <div class="activeVert"></span>
    <div><a></a></span>
</div>

License

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

About the Author

Petr Felzmann

Web Developer

Czech Republic Czech Republic

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalgood ! Pinmember1hello220:51 27 Aug '08  
Questionhow the control will rendered Pinmembermbbisht0:26 24 Aug '07  
GeneralPassing aguments to the hyperlinks PinmemberMiszou11:25 7 Dec '04  
GeneralWould be good if it worked in ... PinsussAnonymous2:59 16 Jun '04  
GeneralRe: Would be good if it worked in ... PinmemberPetr Felzmann18:48 16 Jun '04  
GeneralCould be really good... PinmemberJoel Holdsworth1:39 14 Jun '04  
GeneralRe: Could be really good... PinmemberPetr Felzmann1:54 14 Jun '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120528.1 | Last Updated 17 Jun 2004
Article Copyright 2004 by Petr Felzmann
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid