彩票走势图

【Stimulsoft Reports.Net教程】在查看器中显示报表

翻译|使用教程|编辑:王香|2018-10-26 10:47:14.000|阅读 329 次

概述:此示例项目演示了如何在ASPX页面上添加HTML5查看器并显示简单报表。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

下载Stimulsoft Reports.Net最新版本

此示例项目演示了如何在ASPX页面上添加HTML5查看器并显示简单报表。要添加查看器,只需从Stimulsoft.Report.Web库中添加StiWebViewer组件即可。

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Show_Report_in_the_Viewer.Default" %>
<%@ Register assembly="Stimulsoft.Report.Web" namespace="Stimulsoft.Report.Web" tagprefix="cc1" %>
 
<!DOCTYPE html>
<html>
<head runat="server">
    <title>Show report in the Viewer</title>
</head>
<body>
    <form id="form1" runat="server">
        <cc1:StiWebViewer ID="StiWebViewer1" runat="server" 
            OnGetReport="StiWebViewer1_GetReport" />
    </form>
</body>
</html>

要显示报表,您应该添加OnGetReport事件,您需要在该事件中加载报表,并在需要时注册数据。

protected void StiWebViewer1_GetReport(object sender, Stimulsoft.Report.Web.StiReportDataEventArgs e)
{
    string reportPath = Server.MapPath("Reports/SimpleList.mrt");
    StiReport report = new StiReport();
    report.Load(reportPath);
 
    string dataPath = Server.MapPath("Data/Demo.xml");
    DataSet data = new DataSet();
    data.ReadXml(dataPath);
    report.RegData(data);
 
    e.Report = report;
}

示例代码的结果如下图所示:

Stimulsoft

购买Stimulsoft正版授权,请点击“”哟!


标签:报表.NET报表控件stimulsoft report .netStimulsoft

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP