用iframe吧,用index.jsp包含left.jsp和main.jsp就OK 了

解决方案 »

  1.   

    可是我想点击之后提交倒action啊 然后action在把数据显示到right上 怎么做到
      

  2.   

     判断你的actiontype 的不同 引入你想要的页面 <%@ include file="*.jsp" %> 
      

  3.   

    frameset 做是最好的 你可以 研究一下这个
      

  4.   

    在要跳到action的时候的连接处 来个target=“”就可以了
      

  5.   

    主要问题是action怎么定位到 right里面啊
      

  6.   

    这个struts没关系,是frame的相关知识。
    主网页包含2个网页,使用框架:
     <frameset>
        <frame src="left.jsp" name="leftfrm" scrolling="auto" noresize>
        <frame src="right.jsp" name="rightfrm"  scrolling="auto" >
    </frameset>
    left.jsp中的一个超连接<A href="shopping.do" target="rightfrm">购物</A>
      

  7.   

    顶上面的,楼主先看看基本的web知识好一些