In my asp.net web application, i have a tree view control with checkbox enabled.Now i want to change the check box state to True when SelectedNodeChanged event fired.
protected void TreeView1_SelectedNodeChanged(object sender, EventArgs e)
{
//code
}
Please Guide me to get out of this issue…
The SelectedNode has a
Checkedproperty which points to the checkbox of the item. You can set it checked by setting theCheckedproperty to true.To check all the child-nodes you can do the following: