How can I create the menu dynamically on my ASPX page?
You can programmatically control any Menu Item at runtime to easily create/manage Menus on the fly. Create empty XML Document, set the DataSource property and call the DataBind() method.
myMenu.DataSource = new XmlDocument();
myMenu.DataBind();
APNSoft Menu provides an extremely rich and powerful server-side API allowing developer to add, remove or edit elements and element collections by using the MenuElement and MenuElementCollection classes.
The Live Demo with code samples is available.