hello, here is my problem, i'll try to explain my page structure
on my site, i use treeviews (filled by code from hierarchical database) in several accordion panes to navigate on my page
so, i've :
<cc1:Accordion ....>
<Panes>
<cc1:AccordionPane>
<asp:TreeView>...</asp:TreeView>
</cc1:AccordionPane>
.. 2nd pane with a treeview, and so on...
</Panes>
</cc1:Accordion>
my accordion acts like a "menu" to choose which type of data you want to browse
when my user clicks on a node of one of my treeviews (the one which is in the active accordion pane obviously), it sets the value of an HiddenField to the selected node value
in the main part of the page, i've a formview which displays data (with the select parameter bound to the hiddenfield value)
and it's works 
but sometimes, some data changes made in the formview need to be done in the treeviews too (node label for instance)
but I don't how to do that
currently, my treeviews are in an accordion which is NOT is an updatepanel
but if i put the accordion (containing the treeviews) is an updapanel, it don't work, clearly there is a problem with the HiddenField (which links treeviews and formview)
I've tried to put the hiddenfield at different level (inside/outside the updatepannel), no result
please help me to choose a nice way to "ajax"-reload treeviews inside accordion on item updated event of the formview
thanks