Click here to Skip to main content
15,886,026 members
Articles / Web Development / ASP.NET

Custom Web Menu with Embedded Resources

Rate me:
Please Sign up or sign in to vote.
4.25/5 (4 votes)
30 Mar 2010CPOL2 min read 32.8K   912   17  
This is a free custom web menu with Tigra menu (free JavaScript menu) embedded.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        this.menu.MenuXMLPath = Server.MapPath("~/menudata.xml");
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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
A C# lover....

Comments and Discussions