Mercurial > hg > ismi-richfaces
annotate src/main/webapp/imageServer/test.jsp @ 29:620b58e5c69b
make mpiwg-logo url schema-relative
| author | casties |
|---|---|
| date | Tue, 19 May 2015 12:57:44 +0000 |
| parents | 764f47286679 |
| children |
| rev | line source |
|---|---|
| 7 | 1 <html> |
| 2 <head><title>First JSP</title></head> | |
| 3 <body> | |
| 4 <% | |
| 5 double num = Math.random(); | |
| 6 if (num > 0.95) { | |
| 7 %> | |
| 8 <h2>You'll have a luck day!</h2><p>(<%= num %>)</p> | |
| 9 <% | |
| 10 } else { | |
| 11 %> | |
| 12 <h2>Well, life goes on ... </h2><p>(<%= num %>)</p> | |
| 13 <% | |
| 14 } | |
| 15 %> | |
| 16 <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a> | |
| 17 </body> | |
| 18 </html> |
