xref: /aosp_15_r20/external/guice/extensions/struts2/example/root/Counter.jsp (revision dc5640d1ceac12a29404866b9a53df952a7a6c47)
1<%@ taglib prefix="s" uri="/struts-tags" %>
2
3<html>
4  <body>
5    <h1>Counter Example</h1>
6    <h3><b>Hits in this session:</b>
7      <s:property value="count"/></h3>
8
9    <h3><b>Status:</b>
10      <s:property value="status"/></h3>
11
12    <h3><b>Message:</b>
13      <s:property value="message"/></h3>
14  </body>
15</html>
16