11.jspJSP页面是
<%!String name;%>
<%@include file="22.jsp"%>
<%@include file="33.jsp"%>
我想在<%@include file="22.jsp"%>句后让这个程序暂停100毫秒  可以实现吗 ?
怎么实现?
---------------------------------------------
22.jsp是
<p>创建会话</p>
<%
session.putValue("username","!#");
session.setMaxInactiveInterval(5);
%>
----------------------------------------
33.jsp 是
<%
  String name =(String) session.getValue("username");%>
获得会话<%=name%>
-------------------------------------------