不用frame
用struts的标签 tiles
该如何使用?
麻烦高手指教,请详细或加个例子

解决方案 »

  1.   

    请将问题说的再细一点。
    楼主说的是布局或模块化么?
    做个div布局或table布局,引入jsp页面,或是用struts2的标签“action”来发送请求,获得请求结果页面。
    <html>
    <head><title></title><head>
    <body>
    <table>
    <tr>
    <td><s:action name="head" executeResult="true" /></td>
    </tr>
    <tr>
    <td><s:action name="menu" executeResult="true" /></td>
    </tr>
    <tr>
    <td><s:action name="footer" executeResult="true" /></td>
    </tr>
    </table>
    </body>
    </html>
    其中action name中的字符串是你在struts配置文件中配置好的请求。