1
2
3
4
5
6
7
8
9
|
<%! int
count= 0 ;
%>
<%
count++;
session.setAttribute( "count" ,count);
out.print( "您是第" +session.getAttribute( "count" )+ "位访客" );
%>
|