hi, i have been working with asp not so long and i need some help to do the following.
I have a Treeview in the html code and bind all data in codebehind.. the treeview load all data just fine.. but i want to check some checkboxes in the treeview.. the problem is that i succefully find all checkboxs and set to the property checked to 'True'..
when i finish to check all i need then look the treeview in the same code and all the checkboxes al correctly checked but when code C# finish and return to page in the webbrowser any of the checkboxes that i check are checked.. and when i look into the codebehind
again i see that mi checkboxes are checked but again return to the page and nothing.. it seems to be a problem when postback the page.. in my server side are checked but in my client side don't.. the treeview is the following
<asp:TreeView ID="TreeViewPermissions" runat="server" ExpandDepth="1">
& ...
Go to the complete details ...