printing client side crystal report
I am doing a web application in .net with crystal report, is there a way to print crystal report on client side an开发者_Python百科d do some server side treatement i'm using c#, asp.net (.net 2)?
thanks in advance
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...
精彩评论