java_web/webapp/counter.jsp
2024-11-26 15:35:29 +08:00

8 lines
138 B
Plaintext

<html><body>
<%@ page language="java" %>
<%! int count = 0; %>
<% count++; %>
Welcome! You are visitor number
<%= count %>
</body></html>