You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
472 B

using System;
using OboutInc.TextMenu;
public class ex_Vertical : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
TextMenu tm1 = new TextMenu();
tm1.Vertical = true;
tm1.ID = "tm1";
tm1.Add(null, "brands", "Brands", "javascript:alert('you clicked me');void(0);", null);
tm1.Add("brands", "ibm", "IBM");
tm1.Add("brands", "microsoft", "MICROSOFT");
tm1.Add("brands", "obout", "OBOUT", "http://www.obout.com/", "_top");