这个示例展示了如何在运行时刻,为 Windows Forms 或 Web 应用程序创建一个简单的报表,然后把输出它。

Expand image 创建报表类

Expand image 在 Windows 窗体应用程序中显示报表

Expand image 在 Web 应用程序中显示报表

C#CopyCode image复制代码
protected void Button1_Click(object sender, EventArgs e) {
    MyReportsNamespace.MyReport report = new MyReportsNamespace.MyReport();
    ReportViewer1.Report = report;
}
Visual BasicCopyCode image复制代码
Protected Sub Button1_Click(sender As Object, e As EventArgs) _
Handles Button1.Click
    Dim Report As New MyReportsNamespace.MyReport()
    ReportViewer1.Report = Report
End Sub

Expand image参阅