我的程序,你参考下先
  Private Sub Refresh_ListView()
        Select Case Session("sr")
            Case "0"
                Response.Write("<script>parent.frrighttop1.location.href='righttop_receive.aspx?startdate=" & Session("startdate") & "&count=" & Session("count") & "';</script>")
            Case "1"
                Response.Write("<script>parent.frrighttop1.location.href='righttop_send.aspx?startdate=" & Session("startdate") & "&count=" & Session("count") & "';</script>")
        End Select
    End Sub

解决方案 »

  1.   

    Response.Write("<script>parent.frrighttop2.location.href='righttop2.aspx?information_id=" & Session("information_id") & "';</script>")
                    Response.Write("<script>parent.frrightbottom2.location.href='rightbottom2.aspx?information_id=" & Session("information_id") & "';</script>")
      

  2.   

    是不是这样,可以触发到别的页面
     Dim tmpNd As New TreeNode
     tmpNd.ID = CType(reader("ID"), Integer)
     tmpNd.Text = CType(reader("Name"), String)
     tmpNd.NavigateUrl = CType(reader("PageLink"), String)
     tmpNd.ImageUrl = Server.MapPath("..") & "\images\TreeImg\folder.gif"
     tmpNd.Target = "mainFrame"  '注意这一句,指到框架中别的页面!
     Me.TreeView.Nodes.Add(tmpNd)
      

  3.   

    相信只要你仔细阅读了这篇小菜文,并参考一下提供的例程,一定能够掌握TREE的基本用法!1.工欲善其事,必先利其器。首先保证装好你的组件,这个包安装非常方便,只要运行一下即可在VS.NET的工具栏中找到并使用了:
    http://218.56.11.178:8018/FileDown.aspx?FID=42.看这个例子,对你一定有启发:
    http://218.56.11.178:8018/FileDown.aspx?FID=2463.这个论坛也使用了树(asp.net+C#+MSSQL 2000),并且代码完全开放,还包含了其他一些常用的asp.net编程技巧,演示了TREE控件如何和数据库结合,动态显示库中的数据:
    http://218.56.11.178:8018/FileDown.aspx?FID=212论坛的使用演示地址,在这里:
    http://expert.kaer.cn/提供站点:http://soft.kaer.cn       希望大家多支持!
    ftp://soft.kaer.cn   可以直接用IE匿名访问,目前速度没限制
      

  4.   

    学海无涯所说的我也用了,就是实现不了联动?
    左边是微软提供的树形控件Treeview
    有高手吗?
      

  5.   

    我知道你想实现的功能,按TOP上的控件,left和right都变化,但是right是根据你left的变化而变化的,按top,left变化了,但现在left的树上哪一个节点被选中都不知道,你怎么能要求right变化呢?
    你的代码tmpNd.NavigateUrl = CType(reader("PageLink"), String)是从数据库中取的值,哪right怎么知道你选中那个node??????
      

  6.   

    tmpNd.NavigateUrl = CType(reader("PageLink"), String)中的url是自己直接指定的,就是要实现怎样来切换tmpNd.NavigateUrl然后来控制right的页面to 无间道
    哪right怎么知道你选中那个node??????就是要研究的问题!!!!!!!!!!!!!!!!!!!!!!
      

  7.   

    http://www.aspxcn.com/dotnetdown/show.aspx?id=377
      

  8.   

    用javascript:
    <a href=# onclick="javascript:window.parent.left.location='a.aspx';"
    树型控件中的node的Navegater属性赋值于b.aspx,然后target属性赋"right"