views:

16

answers:

1

I am using a treeview control. I am buliding the tree dynamically. sometimes the tree becomes larger and the down scroll bar is need to see the entire tree. user can select a node from the tree. if one node is selected ,i change the color of the node from server side.

my problem is that if a user selected a node which is bottom in the tree(means, the user used the down scrollbar to see that node), after postback it shows the top of the tree.to see the selected node the user need to use the down scroll bar.

I need to show the selected node after postback. How can I do this?

I am using c# and asp.net

A: 

You can use update panel to work around this issue.

DEVMBM