Hi Rajarsh,
thanks for your quick response, just want to add a auto refresh function.
viewReport.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<title>View Report</title>
<body>
<div>
<input type="checkbox" id="autoCheck" onClick="enableSelect()" />Auto Refresh
<select id="autoRefresh" disabled="disabled" onChange="autoRefreshReport()">
<option value ="0">select duration</option>
<option value ="1">Refresh in 5 minutes</option>
<option value ="2">Refresh in 10 minutes</option>
</select>
</div>
<div id="reportDetailDiv">
<%@include file="/WEB-INF/jsp/reportDetail.jsp"%>
</div>
</body>
reportDetail.jsp:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<body>
<div >
<iframe src="http://localhost:8080/BOE/OpenDocument/opendoc/openDocument.jsp">
</iframe>
</div>
</body>
regards,
warrick.