ghost
from: Washington, DC
| You can control the target page by adding a target property to your node. e.g. in the LoadFromDB routine, you can set the target everytime you create the child node as follows: Public Sub LoadFromDB(strConn,strMenuTable) ... If Not RS.EOF Then Do While Not RS.EOF parentid=RS("ParentID") Dim child Set child = New Node Call child.Init(RS("Text"),RS("URL"),RS("ToolTip")) child.ID = RS("MenuID") 'Add the following line child.Target = "right" 'or your target page name ... Loop End If ... End Sub
------------------------- Ghost |