Hi All,
I am using the BIRT's Viewer tag in a JSP file to view a report, but when I run the JSP file, I just see a blank page. When I use the "report" tag, I can view the report perfectly, but I need to use viewer tag only.
Below is the code that I use & also include birt.tld file. Please help me.
<%@ 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">
</head>
<body>
<birt:viewer id="bv" reportDesign="C:/birt_tags.rptdesign"
pattern="frameset"
format="html" isHostPage="true" >
</birt:viewer>
</body>
</html>
DHAVAL TAMHANE