Dear All
Need a quick script to browse through panelbar from server side to change text of each element on the basis of certain pereferences..
Someting like below
public void LocalizeMeu(Menu MenuName) { MenuItemCollection mc; mc = MenuName.Items; foreach (MenuItem m in mc) { m.Text=getLocalValue(m.Text); } }I also want to check if child elements are present to drilldown till the end.
Thanks