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

AMenu - A Simple .NET Vertical Menu

Rate me:
Please Sign up or sign in to vote.
4.88/5 (26 votes)
8 Oct 2009CPOL4 min read 64K   3.1K   100  
A CSS based .NET vertical menu control.
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Schedule.ascx.cs" Inherits="mtweb.Schedule" %>


<!-- Start content_sections -->
<div class="content_sections" style="height:30em;">

  <!-- Start section -->
  <div class="section">

    <div class="section_title">
      <table width="100%">
      <tr>
        <td>Today Schedule</td>
        <td class="indicator">
          <asp:UpdateProgress ID="UpdateProgress" runat="server" DisplayAfter="200">
          <ProgressTemplate>
            <asp:Image ID="ImageAjax" runat="server" CssClass="image_ajax"
            ImageUrl="~/images/ajax2.gif" />
          </ProgressTemplate>
          </asp:UpdateProgress>
          <asp:ImageButton ID="ImageClose" runat="server" CssClass="image_close"
          ImageUrl="~/images/x3.gif" OnClick="OnCloseClick" />
        </td>
      </tr>
      </table>
    </div>
    
    <div class="section_text">
      <p>10:00am : Rescue princess Leah</p>
      <p>5:30pm : Movie & dinner with Superman</p>
    </div>
        
  </div>
  <!-- End section -->

</div>
<!-- End content_sections -->

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
Europe Europe
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions