Hi,
i wanted to load my treeview in lazy loading concept as i have large amount of data.
so, i used this following link
http://www.codeproject.com/Articles/68693/ASP-NET-Lazy-Content-Loading-Through-WCF-REST-Serv
It works great. But how to redirect to another web form and should maintain clicked node.
i need treeview for all web pages. so i put Jqeury function and in master page
site.master
***********
<head runat="server">
<title></title>
<link href="CSS/Jquery.css" rel="stylesheet" type="text/css" />
<script src="Script/jquery.js" type="text/javascript"></script>
<script src="Script/ui.core.js" type="text/javascript"></script>
<script language="jscript" src="Script/jquery.dynatree.js" type="text/javascript"></script> ...
Go to the complete details ...