树型结构,点击超连接在右边的框架中显示页面,该如何?(有代码)

时间:2021-08-02 12:00:16
//框架
<frameset rows="*" cols="163,*" framespacing="1" frameborder="yes" border="1">
  <frame  src="WebForm1.aspx" name="leftFrame" scrolling="yes" noresize>
  <frame  src="ShowUser.aspx" name="rightFrame" scrolling="yes" noresize>
</frameset>

//指定树型超链接
Node.NavigateUrl = String.Format("ShowUser.aspx?id={0}", Row("TypeName").ToString())

可是当我点击超链接时左边的框架显示了showuser.aspx页面
我想在右边的框架中显示showuser.aspx?id(xx)的页面
请问现在该怎么做?谢谢!

6 个解决方案

#1


UP

#2


<base target="main">

右边的 main 是右边的框架名称

#3


指定target="rightFrame"

#4


<IFRAME id="carnoc" style="Z-INDEX: 2; VISIBILITY: inherit; WIDTH: 170px; HEIGHT: 100%"
name="carnoc" src="Menu.Aspx" frameBorder="0" scrolling="no"> </IFRAME>

<IFRAME id="main" style="Z-INDEX: 1; VISIBILITY: inherit; WIDTH: 100%; HEIGHT: 100%" name="main"
src="Main.Aspx" frameBorder="0" scrolling="yes"> </IFRAME>

在左边的iframe中加入 <base target="main">代码

#5


Node.target="rightFrame";

#6


或则指定整个树Node.target="rightFrame";
不用每个接点都指定。

#1


UP

#2


<base target="main">

右边的 main 是右边的框架名称

#3


指定target="rightFrame"

#4


<IFRAME id="carnoc" style="Z-INDEX: 2; VISIBILITY: inherit; WIDTH: 170px; HEIGHT: 100%"
name="carnoc" src="Menu.Aspx" frameBorder="0" scrolling="no"> </IFRAME>

<IFRAME id="main" style="Z-INDEX: 1; VISIBILITY: inherit; WIDTH: 100%; HEIGHT: 100%" name="main"
src="Main.Aspx" frameBorder="0" scrolling="yes"> </IFRAME>

在左边的iframe中加入 <base target="main">代码

#5


Node.target="rightFrame";

#6


或则指定整个树Node.target="rightFrame";
不用每个接点都指定。