I have Connected an XmlDtaSource to a TreeView with checkboxes.I want to populate the user permissions in that.
<asp:TreeView ID="TreeView1" runat="server" ExpandDepth="2"
ShowCheckBoxes="All" ShowLines="True">
<DataBindings>
<asp:TreeNodeBinding ValueField="Value" DataMember="menuNode" TextField="title" />
</DataBindings>
</asp:TreeView>
I want to change the value of the checkbox(checked or not) according to the one field in the xml.
How to do this ? Plz
Best Solution
Do something like this
I've not provided exact answer by hope it give you some clue.