view src/main/webapp/proxy.jsp @ 51:cf747a960516

new: auto scroll to the last position when de/selecting rows, and add number of selected rows info, in full text search page
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Fri, 29 Jan 2016 11:54:32 +0100
parents 3e62083dbcbf
children
line wrap: on
line source

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<html>

	<head>

		
		<jsp:useBean id="proxy" class="de.mpiwg.web.jsp.JSPProxy" scope="request" >
			<jsp:setProperty property="*" name="proxy"/>
		</jsp:useBean>
		
		<jsp:setProperty name="proxy" property="request" value="${pageContext.request}" />
		<jsp:setProperty name="proxy" property="response" value="${pageContext.response}" />
		
		<% 
			response.sendRedirect(proxy.processRequest());
		%>
		
	</head>
	<body>
	
	</body>
</html>