Add first banch of JSPs
[proteocache.git] / website / PrintResult.jsp
1 <%@ page language="java" contentType="text/html; charset=UTF-8"
2     pageEncoding="UTF-8"%>
3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
4 <html>
5 <head>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>Report</title>
8 </head>
9 <body>
10 <h3>Report Results</h3> 
11 <%      String rez = request.getAttribute("result").toString();
12         String[] rezLines = rez.split(";");
13         for (int i = 0; i < rezLines.length; i++) {
14 %>
15 <%= rezLines[i]+"<br/>" %>
16 <%
17 }
18 %>
19 <a href="javascript:history.back()">Click here to go Back</a>
20 </body>
21 </html>