0
votes
3answers
1k views
ASP.Net TreeView Scrolling the selected node into view
Is there a way to scroll the selected node of an ASP.Net TreeView into view after a postback?
In my parrticular scenario the control is repopulated after each postback.
Thanks! …
0
votes
ASP.Net TreeView Scrolling the selected node into view
I figured it out. The TreeView control creates a javascript object on the client. It is named whatever you called the treeview with a '_Data' appended. The object lets you get a reference to the se …
0
votes
Recommend a good book about Web Services (.NET)?
I found Learning WC F to be out of date in a few areas.
Programming WCF Services by Juval Lowy was printed very recently and should be right upto date. It is however heavi …
0
votes
ASP.NET Page.OnLoad executes twice
Do you have any controls with AutoPostBack set to true ? That will cause the Page object to be recreated and therefore the PageLoad method will execute again.
…
