Treeview and Frames in ASP.Net

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top