注册 登录
编程论坛 ASP.NET技术论坛

做一个像资源管理器那样的页面

馨馨 发布于 2008-04-08 15:07, 736 次点击
框架集是不是要在DW中做呢,我在VS05中加入了Treeview控件,我想做一个子页面怎么做呢,就是想像资源管理器那样左边不动,只是右边动的效果,那么是不是需要用框架集呢,而且怎么做出那样的效果呢
4 回复
#2
小乌龟2008-04-08 17:53
right,I think so.
for ecxample:
<frameset >   
        <frame  >   
        <frameset>   
            <frame   name="left"   src="left.aspx">   
            <frame   name="right"   src="right.aspx">   
        </frameset>   
  </frameset>
when you click one buttom or link in left frame,you should write the below code in this buttom_click event.
       Response.Write("window.parent.main.location='right.aspx';")
#3
hebingbing2008-04-08 18:25
小乌龟英语学的so牛啊……
哈哈……
#4
guiqian1452008-04-09 14:32
soso
#5
馨馨2008-04-09 19:58
小乌龟,我想问问你 我在VS05中套用了母版。还可以用框架像你给我说的那样做吗?,那我用母版怎么才能实现只有右边动呢
1