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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if you use the
CrystalReportViewer controlin your ASP.NET page then you canPrintToPrinteron 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…