how to create a sub link in a menu dropdownlist
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
how to create sub menu dropdown in a menu dropdown in asp.net
-
how to create sub menu dropdown in a menu dropdown in asp.net
Look this code... Dim itm As New MenuItem("hi") Dim itm1 As New MenuItem("me") Dim subitm As New MenuItem("subhi") itm.ChildItems.Add(subitm) Menu1.Items.Add(itm) Menu1.Items.Add(itm1)
The miracle is this--the more we share, the more we have.