Add first banch of JSPs
[proteocache.git] / website / PrintResult.jsp
diff --git a/website/PrintResult.jsp b/website/PrintResult.jsp
new file mode 100644 (file)
index 0000000..c2f2e81
--- /dev/null
@@ -0,0 +1,21 @@
+<%@ page language="java" contentType="text/html; charset=UTF-8"
+    pageEncoding="UTF-8"%>
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>Report</title>
+</head>
+<body>
+<h3>Report Results</h3> 
+<%     String rez = request.getAttribute("result").toString();
+       String[] rezLines = rez.split(";");
+       for (int i = 0; i < rezLines.length; i++) {
+%>
+<%= rezLines[i]+"<br/>" %>
+<%
+}
+%>
+<a href="javascript:history.back()">Click here to go Back</a>
+</body>
+</html>
\ No newline at end of file