22 lines
621 B
Plaintext
22 lines
621 B
Plaintext
|
|
<%@ page contentType="text/html;charset=gb2312" %>
|
|||
|
|
<%
|
|||
|
|
int number = 0;
|
|||
|
|
Integer num =(Integer)application.getAttribute("num");
|
|||
|
|
if(num==null){
|
|||
|
|
application.setAttribute("num",new Integer(number));
|
|||
|
|
}
|
|||
|
|
else{
|
|||
|
|
number = num.intValue()+1;
|
|||
|
|
application.setAttribute("num",new Integer(number));
|
|||
|
|
}
|
|||
|
|
%>
|
|||
|
|
<html><head><title>application example</title></head>
|
|||
|
|
<body>
|
|||
|
|
<center><font color="#0000ff" size="5">application<6F><6E><EFBFBD><EFBFBD>ʾ<EFBFBD><CABE></font>
|
|||
|
|
</center>
|
|||
|
|
<hr>
|
|||
|
|
<EFBFBD><EFBFBD>ҳ<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD>ʵ<EFBFBD><EFBFBD>·<EFBFBD><EFBFBD><EFBFBD>ǣ<EFBFBD><br><%=application.getRealPath("application.jsp") %><br>
|
|||
|
|
application<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>б<EFBFBD><EFBFBD><EFBFBD>num<EFBFBD><EFBFBD>ֵΪ<EFBFBD><EFBFBD><%=application.getAttribute("num") %>
|
|||
|
|
</body>
|
|||
|
|
</html>
|