Home - Forums-.NET - FlyTreeView (ASP.NET) - OnPopulateNodes Protection Level?

FlyTreeView (ASP.NET)

Technical support and KB related to the FlyTreeView control

This forum related to following products: FlyTreeView for ASP.NET

OnPopulateNodes Protection Level?
Link Posted: 31-Oct-2006 05:56
I am trying to build a tree server-side, but need to dynamically populate the nodes.  When I try to assign OnPopulateNodes in the code, I get the compile error \"NineRays.WebControls.FlyTreeView.OnPopulateNodes (NineRays.WebControls.FlyTreeNodeEventArgs)' is inaccessible due to its protection level.  

Is this not something that can be done on the server side such as:

     NineRays.WebControls.FlyTreeView tree = new NineRays.WebControls.FlyTreeView();
     aTree.OnPopulateNodes = \"flyTreeView_PopulateNodes\";


Thanks,

Jamey
Link Posted: 31-Oct-2006 06:42
Jamey,

OnPopulateNodes is a protected method. It should be used by control inheriters only. It is named On.. according to ASP.NET guidelines.

And PopulateNodes is an event. Please use it instead of OnPopulateNodes in your code.
Link Posted: 31-Oct-2006 06:59
As much as I would like to try and pass this off as a momentary lapse of memory... I have to be honest and say that I did not know this ASP.NET convention.  

Thanks!