I have an ASP.net web application in C#.
The export button and the print button in the toolbar is not working.
When I click on Print/Export button, dialogue box appear which have option to select pages or select format then i click on export button no file download or save.
paramField.Name = "@GatePass";
paramDiscreteValue.Value = GPLabel.Text;
paramField.CurrentValues.Add(paramDiscreteValue);
paramFields.Add(paramField);
CrystalReportViewer1.ParameterFieldInfo = paramFields;
reportdocument.Load(Server.MapPath("DO_Report.rpt"));
reportdocument.SetDatabaseLogon("sa", "Admin1");
CrystalReportViewer1.ReportSource = reportdocument;
CrystalReportViewer1.DataBind();
I have tried exporttodisk code as well like,
reportdocument.ExportToDisk(ExportFormatType.Excel,"C:/Users/Administrator/Desktop/ashar.pdf");
but this code just export the blank report on given destination, i already tried (ExportToHttpResponse) but no solution found, help me please Thanks in Advance
Try exporting it as a memory stream maybe. Also I think there's a printToPrinter method on ReportDocument