How do I capture the event of the clicking the Selected Node of a TreeView? It doesn\'t fire the SelectedNodeChanged since the selection has obviously not c
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { TreeView1.SelectedNode.Selected = false; } }
works for me