java_web/webapp/counter.jsp

8 lines
138 B
Plaintext
Raw Permalink Normal View History

2024-11-26 15:35:29 +08:00
<html><body>
<%@ page language="java" %>
<%! int count = 0; %>
<% count++; %>
Welcome! You are visitor number
<%= count %>
</body></html>