Click here to Skip to main content
Click here to Skip to main content

One-Level ASP.NET Menu – FlatMenu

By , 16 Jun 2004
 

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
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Generalgood !member1hello227 Aug '08 - 20:51 
Questionhow the control will renderedmembermbbisht24 Aug '07 - 0:26 
GeneralPassing aguments to the hyperlinksmemberMiszou7 Dec '04 - 11:25 
GeneralWould be good if it worked in ...sussAnonymous16 Jun '04 - 2:59 
GeneralRe: Would be good if it worked in ...memberPetr Felzmann16 Jun '04 - 18:48 
GeneralCould be really good...memberJoel Holdsworth14 Jun '04 - 1:39 
GeneralRe: Could be really good...memberPetr Felzmann14 Jun '04 - 1:54 

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

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