我制作了一个简单的birt报告,其中仅包含一个名为“ CustomerNumber”的参数
我正在尝试创建一个自定义参数页面,但是我不知道如何将jsp文件分配给birt报告。还是我将其倒退,需要将报告分配给jsp文件?我对Birt很陌生,因此不胜感激。
这是我的jsp:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="/birt.tld" prefix="birt" %>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<birt:viewer id="birtViewer" reportDesign="paraTest.rptdesign"
pattern="frameset"
height="450"
width="700"
format="html">
</birt:viewer>
<birt:parameterPage id="CustomerNumber" reportDesign=paraTest.rptdesign"
name="Sample report form"
pattern="frameset"
height="600"
width="800"
title="Sample Report"
isCustom="true"
showTitle="true"
showToolBar="true"
showNavigationBar="true"
baseURL="/Birt"
CustomerNumber
<input type="Text" name="CustomerNumber">
<br>
<br>
<input type="Submit" value="Run Report">
</birt:parameterPage>
</body>
</html>