Umm, that is a kind of a wide open question you have asked. confused:
Here is some code to get you started:
<asp:DataList id="dlMenu" runat="server" .....
....
....
OnItemCommand="dlMenu_ItemCommand"
....>
....
<ItemTemplate>
<asp:LinkButton id="btnItem1" runat="server" Text='<%Container.DataItem("MenuValue1")%' CommandName="select" /></ItemTemplate>
</asp:DataList>
Now in the Code behind or Script Code place
public sub dlMenu_ItemCommand(obj as Object, e as DataListCommandEventArgs)
dlMenu.SelectedIndex = e.Item.ItemIndex
' ||||| Do what you want with the selected Item . Navigate, etc
end sub
Hope this helps.... Maybe Tekmaven has something to add to this? :