treeview loses data when page is being refreshed in asp.net
- by Greg
Hi,
I have a treeview and I written a code for his "treeNodePopulate" event:
protected void ycActiveTree_TreeNodePopulate(object sender, TreeNodeEventArgs e)
{
if (Application["idList"] != null && e.Node.Depth == 0)
{
string[] words = ((String)Application["idList"]).Split(' '); // Yellow Card details
…