Hi I'm new at this but here is my problem
I have a asp menu control which I have not linked to any data source.
Using
VB I written the following code:
Dim MItem As New MenuItem
MItem .Text = "Item1"
Menu1.Items.Add(MItem)
This code works fine if I only want to add 1 item to the menu control but returns the following error if I return more that 1:
"Index must be within the bounds of the List.
Parameter name: index"
Can some help?
<SamP>