I'm thinking of a way to solve a problem with a treeview. One way I can solve it is by adding a hiddenfield for each node. I could end up with many hidden fields on the page (the tree could have thousands of nodes but it is safe to assume that they will not all be visible or even loaded at the same time).
The alternative is to have one or two hidden fields, and store the IDs of the tree nodes (for the ones I need) in the fields, and then use regular expressions, or split, or something on the server to extract the nodes
The alternative is to have one or two hidden fields, and store the IDs of the tree nodes (for the ones I need) in the fields, and then use regular expressions, or split, or something on the server to extract the nodes