导入其他JSP

作者: 神坛下的我 | 来源:发表于2018-08-17 11:56 被阅读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

相关文章

  • 导入其他JSP

    index.jsp foot.jsp

  • js的include page 全局变量的声明等

    1.include<%@include file="index.jsp" %> 导入其他页面2 . page<%@...

  • JSTL表达式

    1、jstl(JSP Standard Tag Library) jsp标准标签库 2、使用前要导入<%@ tag...

  • 在jsp页面中把字符串进行分割转为一个数组

    在jsp页面中要导入<%@ taglib uri="http://java.sun.com/jsp/jstl/fu...

  • jsp

    my.jsp必须放在webapp目录下 jsp指令 引入java包 引入其他jsp页面

  • 《Head First Servelet & JPS》笔记

    作为JSP 使用page指令导入包 指令有3种:page、include和taglib。 3种不同类型的JSP元素...

  • 无标题文章

    jsp 页面常出现的错误 今天导入一个项目到自己的Eclipse的workpalce时,项目的jsp页面总是报错,...

  • JavaWeb-013-JSP的基本语法

    JSP模版元素 JSP页面中的静态HTML内容称之为JSP模版元素,在静态的HTML内容之中可以嵌套JSP的其他各...

  • 聊聊JSP及其他

    1、静态网页和动态网页 静态网页无法实现用户与网页的交互,而动态网页可以实现交互。动态网页的动态指的是能与用户进行...

  • jsp语法

    java依赖包 界面导入c标签 基本语法 1. java存变量 2. jsp取变量 3. jsp遍历集合 4. j...

网友评论

    本文标题:导入其他JSP

    本文链接:https://www.haomeiwen.com/subject/pnpzbftx.html