在html页面中嵌入BIRT Report Viewer

时间:2014-06-10 07:18:02

标签: html birt

我在不同的页面中有一些BIRT报告(似乎是xml)。我在BIRT也很新。

我可以在HTML中嵌入BIRT报告吗?

1 个答案:

答案 0 :(得分:1)

<%@ 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>My Report - JSP</title>
    </head>
    <body>
        <birt:viewer
        id="birtViewer"
        reportDesign="SD.rptdesign"
        pattern="frameset"
        height="800"
        width="775"
        isHostPage="false"
        frameborder="0"
        scrolling="false"
        style="border-radius:25px; border:3px solid silver"
        format="html">
        </birt:viewer>
    </body>
</html>

我这样做已经解决了......