Sample JSP Code: Excel reporting - batch processing sample

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"

    pageEncoding="ISO-8859-1"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<%@page import="com.pagos.sample.AutoInsuranceBatch"%>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">

<TITLE>Pagos SpreadSheet Component JSP sample: AUTO INSURANCE BATCH</TITLE>

</head>

<body>

<%

      AutoInsuranceBatch batch = new AutoInsuranceBatch(session.getId(),out);

      batch.executeSample();

%>

</body>

</html>