ActiveReports 9 > ActiveReports User Guide > Samples and Walkthroughs > Walkthroughs > Section Report Walkthroughs > Export > Custom Web Exporting (Std Edition) |
ActiveReports provides components that allow you to set up report custom exporting to PDF, Excel, TIFF, RTF, and plain text formats. You can similarly export to HTML, or you can create a custom HTML outputter.
To add a report and export references to the Web project
GrapeCity.ActiveReports.Export.Pdf.v9
GrapeCity.ActiveReports.Export.Html.v9
GrapeCity.ActiveReports.Export.Excel.v9
GrapeCity.ActiveReports.Export.Word.v9
GrapeCity.ActiveReports.Export.Xml.v9
GrapeCity.ActiveReports.Export.Image.v9
To add code to the Web Form to export a report to PDF
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
Dim m_stream As New System.IO.MemoryStream() Dim rpt As New GrapeCity.ActiveReports.SectionReport Dim xtr As New System.Xml.XmlTextReader("\SectionReport1.rpx") rpt.LoadLayout(xtr) xtr.Close() rpt.Run() Dim PdfExport1 As New GrapeCity.ActiveReports.Export.Pdf.Section.PdfExport PdfExport1.Export(rpt.Document, m_stream) m_stream.Position = 0 Response.ContentType = "application/pdf" Response.AddHeader("content-disposition", "attachment;filename=MyExport.pdf") Response.BinaryWrite(m_stream.ToArray()) Response.End() |
To write the code in C#
C# code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
System.IO.MemoryStream m_stream = new System.IO.MemoryStream(); System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(Server.MapPath("") + "\\SectionReport1.rpx"); rpt.Run(); |
Note: To use the one-touch printing option, add the following to the code above.
|
To add code to the Web Form to export a report to Excel
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
Dim m_stream As New System.IO.MemoryStream() Dim rpt As New GrapeCity.ActiveReports.SectionReport Dim xtr As New System.Xml.XmlTextReader("\SectionReport1.rpx") rpt.LoadLayout(xtr) xtr.Close() rpt.Run() Dim XlsExport1 As New GrapeCity.ActiveReports.Export.Excel.Section.XlsExport XlsExport1.MinColumnWidth = 0.5 XlsExport1.Export(rpt.Document, m_stream) m_stream.Position = 0 Response.ContentType = "application/vnd.ms-excel" Response.AddHeader("content-disposition", "inline; filename=MyExport.xls") Response.BinaryWrite(m_stream.ToArray()) Response.End() |
To write the code in C#
C# code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
System.IO.MemoryStream m_stream = new System.IO.MemoryStream(); GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(Server.MapPath("") + "\\SectionReport1.rpx"); rpt.LoadLayout(xtr); xtr.Close(); rpt.Run(); GrapeCity.ActiveReports.Export.Excel.Section.XlsExport XlsExport1 = new GrapeCity.ActiveReports.Export.Excel.Section.XlsExport(); |
To add code to the Web Form to export a report to TIFF
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
Dim m_stream As New System.IO.MemoryStream() Dim rpt As New GrapeCity.ActiveReports.SectionReport Dim xtr As New System.Xml.XmlTextReader(Server.MapPath("\SectionReport1.rpx")) rpt.LoadLayout(xtr) xtr.Close() rpt.Run() Dim TiffExport1 As New GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport Me.TiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None Me.TiffExport1.Export(rpt.Document, m_stream)m_stream.Position = 0 Response.ContentType = "image/tiff" Response.AddHeader("content-disposition", "inline; filename=MyExport.tiff") Response.BinaryWrite(m_stream.ToArray()) Response.End() |
To write the code in C#
C# code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
System.IO.MemoryStream m_stream = new System.IO.MemoryStream(); GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(Server.MapPath("") + "\\SectionReport1.rpx"); rpt.LoadLayout(xtr); xtr.Close(); rpt.Run(); GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport tiffExport1 = new GrapeCity.ActiveReports.Export.Image.Tiff.Section.TiffExport(); tiffExport1.CompressionScheme = GrapeCity.ActiveReports.Export.Image.Tiff.Section.CompressionScheme.None; tiffExport1.Export(rpt.Document, m_stream); m_stream.Position = 0; Response.ContentType = "image/tiff"; Response.AddHeader("content-disposition","inline; filename=MyExport.tiff"); Response.BinaryWrite(m_stream.ToArray()); Response.End(); |
To add code to the Web Form to export a report to RTF
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
Dim m_stream As New System.IO.MemoryStream() Dim rpt As New GrapeCity.ActiveReports.SectionReport Dim xtr As New System.Xml.XmlTextReader("\SectionReport1.rpx") rpt.LoadLayout(xtr) xtr.Close() rpt.Run() Dim RtfExport1 As New GrapeCity.ActiveReports.Export.Word.Section.RtfExport RtfExport1.Export(rpt.Document, m_stream) m_stream.Position = 0 Response.ContentType = "application/msword" Response.AddHeader("content-disposition", "inline; filename=MyExport.rtf") Response.BinaryWrite(m_stream.ToArray()) Response.End() |
To write the code in C#
C# code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
System.IO.MemoryStream m_stream = new System.IO.MemoryStream(); GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(Server.MapPath("") + "\\SectionReport1.rpx"); rpt.LoadLayout(xtr); xtr.Close(); rpt.Run(); GrapeCity.ActiveReports.Export.Word.Section.RtfExport rtfExport1 = new GrapeCity.ActiveReports.Export.Word.Section.RtfExport(); rtfExport1.Export(rpt.Document, m_stream); m_stream.Position = 0; Response.ContentType = "application/msword"; Response.AddHeader("content-disposition","inline; filename=MyExport.rtf"); Response.BinaryWrite(m_stream.ToArray()); Response.End(); |
To add code to the Web Form to export a report to Plain Text
To write the code in Visual Basic.NET
Visual Basic.NET code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
Dim m_stream As New System.IO.MemoryStream() Dim rpt As New GrapeCity.ActiveReports.SectionReport Dim xtr As New System.Xml.XmlTextReader("\SectionReport1.rpx") rpt.LoadLayout(xtr) xtr.Close() rpt.Run() Dim TextExport1 As New GrapeCity.ActiveReports.Export.Xml.Section.TextExport TextExport1.Export(rpt.Document, m_stream) m_stream.Position = 0 Response.ContentType = "text/plain" Response.AddHeader("content-disposition", "attachment; filename=MyExport.txt") Response.BinaryWrite(m_stream.ToArray()) Response.End() |
To write the code in C#
C# code. Paste INSIDE the Page Load event. |
Copy Code
|
---|---|
System.IO.MemoryStream m_stream = new System.IO.MemoryStream(); GrapeCity.ActiveReports.SectionReport rpt = new GrapeCity.ActiveReports.SectionReport(); System.Xml.XmlTextReader xtr = new System.Xml.XmlTextReader(Server.MapPath("") + "\\SectionReport1.rpx"); rpt.LoadLayout(xtr); xtr.Close(); rpt.Run(); GrapeCity.ActiveReports.Export.Xml.Section.TextExport textExport1 = new GrapeCity.ActiveReports.Export.Xml.Section.TextExport (); textExport1.Export(rpt.Document, m_stream); m_stream.Position = 0; Response.ContentType = "text/plain"; Response.AddHeader("content-disposition", "attachment; filename=MyExport.txt"); Response.BinaryWrite(m_stream.ToArray()); Response.End(); |
To run the project
Press F5 to run the project.