Hello,
I would like to learn about disabling or enabling menu items while taking the menu items from a sitemapdatasource. When I was using the menu items module by itself, I coded the program like this;
example;
if (something happens){
this.Menu1.Items[1].Selectable = false;
this.Menu1.Items[1].ChildItems[3].Enabled = true;
}
But when I changed the datasource to SiteMapDatasource, I naturally can not disable or enable menu items like the one above. So how can I do the same thing by using the sitemapdatasource ?
Thanks..
anchara06