8 lines
138 B
Plaintext
8 lines
138 B
Plaintext
|
|
<html><body>
|
||
|
|
<%@ page language="java" %>
|
||
|
|
<%! int count = 0; %>
|
||
|
|
<% count++; %>
|
||
|
|
Welcome! You are visitor number
|
||
|
|
<%= count %>
|
||
|
|
</body></html>
|