Click here to Skip to main content
6,595,854 members and growing! (18,863 online)
Email Password   helpLost your password?
Web Development » ASP.NET » Reporting     Intermediate License: The Code Project Open License (CPOL)

Send Mail and Print Report in Report Viewer Control

By santosh poojari

This article demonstrates the implementation of Print and Send Mail operation in Report Viewer
C#.NET 1.0, .NET 1.1, .NET 2.0, .NET 3.0, ASP.NET, Architect, Dev, Design
Posted:29 Dec 2008
Views:9,702
Bookmarked:24 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
6 votes for this article.
Popularity: 2.69 Rating: 3.45 out of 5

1

2
3 votes, 50.0%
3
3 votes, 50.0%
4

5

Introduction

I have been working with Report Viewer and have come across a lot of problems related to print option and mailing reports as an attachment to end users. This article aims to help developers facing similar problems.

Bind RDLC -to Report Viewer

Please refer to the following article:

Send Mail Attachment of Report in Report Viewer

One can drag the button and code the lines below so as to send a report as an attachment. In the code below, the attachment can be PDF, HTML, DOC, Excel, etc. For PDF, one needs to code reportViewer.LocalReport.Render("PDF", null,... The code here is self explanatory.

using System.Net.Mail;
private void SendMail(ReportViewer reportViewer)
{
            Warning[] warnings;
            string[] streamids;
            string mimeType;
            string encoding;
            string extension;

            byte[] bytes = reportViewer.LocalReport.Render
		("Excel", null, out mimeType, out encoding, out extension, out 
		streamids, out warnings);

            MemoryStream memoryStream = new MemoryStream(bytes);
            memoryStream.Seek(0, SeekOrigin.Begin);

            MailMessage message = new MailMessage();
            Attachment attachment = new Attachment(memoryStream,"BusinessReport.xls");
            message.Attachments.Add(attachment);

            message.From = new MailAddress("santosh.poojari@gmail.com");
            message.To.Add("santosh.poojari@gmail.com");         
           
            message.CC.Add("santosh.poojari@gmail.com");

            message.Subject = "Business Report";
            message.IsBodyHtml = true;

            message.Body = "Please find Attached Report herewith."
            
            if (ConfigurationManager.AppSettings["SendMail"].ToString() == "Y")
            {
                SmtpClient smtp = new SmtpClient("SMTP Server Name");        
                smtp.Send(message);
            }
	    else
	    {
		//This is for testing.
		SmtpClient smtp = new SmtpClient();        
                smtp.Send(message);
	    }

            memoryStream.Close();
            memoryStream.Dispose();
 }

Design HTML

< rsweb:ReportViewer ID="ReportViewer1" runat="server" 
	Font-Names="Verdana" Font-Size="8pt"
                >
                <LocalReport ReportPath="Report.rdlc" >
                   <DataSources >
                        < rsweb:ReportDataSource / >
                    </DataSources >
                </LocalReport >
            </rsweb:ReportViewer >  

Web Configuration

One can test this code snippet by adding the below configuration in web config.

< system.net >
    < mailSettings >
   	< smtp deliveryMethod="SpecifiedPickupDirectory" >
    	     < specifiedPickupDirectory pickupDirectoryLocation="C:\Test\" / >
	</smtp >
    </mailSettings>
</system.net >  

Print Operation in Report Viewer

Please refer to the link below:

Conclusion

Hope I met the expectation of developers working on similar problems.

History

  • 29th December, 2008: Initial post 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

santosh poojari


Member
He is a Team Lead currently working with one of the IT company in India.His overall experience in IT field is 7 years. He is a B.E (computers) graduate from Mumbai University.
His area of Interest is Microsoft Technology : Asp.Net,C#,Web services,SSIS,SSRS,Windows Workflow Foundation 3.0,SQL server 2005,State Machine Compiler,Regular Expression, Enterprise Library3.0,Spring.net,Design Patterns and Architecture Design.He is MCPD-EA Certified.

http://santoshpoojari.blogspot.com
Occupation: Team Leader
Location: India India

Other popular ASP.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
  (Refresh) 
-- There are no messages in this forum --

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 29 Dec 2008
Editor: Deeksha Shenoy
Copyright 2008 by santosh poojari
Everything else Copyright © CodeProject, 1999-2009
Web10 | Advertise on the Code Project