Treeview and Frames in ASP.Net

  • Thread starter Thread starter Reetu
  • Start date Start date
R

Reetu

Hi All,

I have a Frameset.htm page containing LeftFrame and
RightFrame. At design time I have set the webform1.aspx
page to the LeftFrame.

The webform1.aspx page displays a treeview.
The html code is shown below.

<mytree:treeview id="TreeView1" runat="server"
ImageUrl="closed.gif" ExpandedImageUrl="closed.gif"
SelectedImageUrl="open.gif" SHOWTOOLTIP="false">

<mytree:TreeNode Text="_dir" NavigateUrl="WebForm2.aspx?
path=C:\_dir" Target="contents"></mytree:TreeNode>

</mytree:treeview>

PROBLEM:

When the user selects a node in the leftframe, I want to
display the corresponding .aspx page in the rightframe.

How do I do this?

Thanks,
-Reetu
 
Back
Top