标签:
<%@page import="java.text.SimpleDateFormat"%>
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8"%>
<%
Date d=new Date();
SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日");
String s=sdf.format(d);
out.println(s);
%>
<body>
<h1>Include指令</h1><hr>
<%@include file="date.jsp" %>
</body>
Include_Action.jsp
<h1>Include动作</h1><hr>
<jsp:include page="date.jsp"flush="false"
标签:
原文地址:http://www.cnblogs.com/liuruimiku/p/5459388.html