0
votes

I am doing a web application in .net with crystal report, is there a way to print crystal report on client side and do some server side treatement i'm using c#, asp.net (.net 2)?

thanks in advance

1
What do you mean by 'server side treatment'?Randy Minder
like updating columns in a tableanouar.bagari

1 Answers

0
votes

if you use the CrystalReportViewer control in your ASP.NET page then you can PrintToPrinter on that control... and print on client side...

Another option is create a PDF from the report and stream the PDF to client... the clients' PDF viewer will allow them to print...

IF neither of the above is an option in your case then you call some javascript function window.print() in your web page then the browser shows the printer dialog to the user...