I have the following code:
protected void flyTreeView1_NodeDataBound( object sender, FlyTreeNodeEventArgs e)
{
string s = e.Node.DataItem.GetType().ToString();
}
When I step thru this in debug the value of s is
"NIneRays.WebControls.FlyHierarchyData"
How shall I cast this to get at the data ?
Thanks,
George.