hi all,
i got a treeview and all the nodes are generated programmatically by c#. when creating every single tree node i have specify the selectaction to fire selectednodechanged event, but it is not working.
TreeNode tr = new TreeNode();
tr.Text = parentRows[i]["ModName"].ToString();
tr.Value = parentRows[i]["ModID"].ToString();
tr.NavigateUrl = parentRows[i]["NavigateURL"].ToString();
tr.SelectAction = TreeNodeSelectAction.Select;
tvUserMenu.Nodes.Add(tr);And i also register the selectednodechanged event and inside the event i got 1 Response.Write("ABC") when i test on every treenode, some is working (print out "ABD&quo ...
Go to the complete details ...