代码改变世界

jsp学习1

2011-07-02 11:23  Rollen Holt  阅读(386)  评论(0编辑  收藏  举报

<%@ page contentType="text/html; charset=gb2312"%>

<html>
	<body><font size=5>
	<%! 
	 int i=9;
	%>
	<%
	 i++;
	 %>
	 <p>
	  you are the <%=i %> 
	 </p>
															
	</font>
		
	</body>
</html>
<%@page contentType="text/html; charset=gb2312" %>
<html>
	<body>
	
		<%!
		 int i=0;
		 %>
		
		<%!
		  synchronized int countpeople(){
		    i++;
		    return i;
		  }
		 %>
    you are the 
    <%= countpeople() %>
	</body>

</html>