Infragistics TreeView control TargetFrame property doesn't work???

  • Thread starter Thread starter Aaron Ackerman
  • Start date Start date
A

Aaron Ackerman

I am using the latest Infragistics suite for .NET.
I am using a tree view controlso that when i select a particular item it
will brin up the specified URL in the appropriate pane.
When I trigger the appropriate event it does bring up the correct URL but in
a new window

What am I doing wrong?


private void uwTreeControl_NodeClicked(object sender,
Infragistics.WebUI.UltraWebNavigator.WebTreeNodeEventArgs e)
{
e.Node.TargetFrame = "main";
e.Node.TargetUrl = "/lMyWeb/MySubFolder/MyASP_Page.aspx";
}
 
Back
Top