JSP专题

导入其他JSP

2018-08-17  本文已影响0人  神坛下的我

index.jsp

<body>
    <form action="inde.jsp" method="post">
    <button type="submit">Submit</button>
    <button type="reset">Reset</button>
    <table>
        <tr>
            <td><jsp:include page="foot.jsp"></jsp:include></td>
        </tr>
    </table>
    </form>
</body>

foot.jsp

<body>
    <table border="0" align="center">
        <tr>
            <td align="center">销售服务热线:400-123-123 网址:<a href="www.baidu.com">www.baidu.com</a></td>
        </tr>
        <tr><td align="center">Copyright@www.baidu.com All Rights Resverved!</td></tr>
    </table>
</body>
1111111111111.PNG
上一篇 下一篇

猜你喜欢

热点阅读