I am calling an aspx report viewer page by passing parameters to Window.open() like
var popUpWindow = window.open('@Url.Content("~/rptViewer.aspx")' + "?date=" + date,'popUpWindow', 'channelmode=yes,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no');
and i am printing the report using ReportPrintDocument.cs like
ReportPrintDocument RP = new ReportPrintDocument(reportViewerPrint.ServerReport);RP.Print();
By this the report is printing directly without showing any print dialogue.
Now i want to show the print dialogue for selecting the printer and no of copies to print.. and after clicking on the OK button on print dialogue i have to print the report... as per the options selected in the print dialogue