How to view all crystal report pages ?
-
Hi all , I'm using asp.net and crystal report I'd like to view all pages of the crystal report in the web page without using crystal toolbar to navigate the pages .. can I do that ?
jooooo
-
Hi all , I'm using asp.net and crystal report I'd like to view all pages of the crystal report in the web page without using crystal toolbar to navigate the pages .. can I do that ?
jooooo
Any type of reporting engine I think renders an HTML, to place it inside a browser. So If you somehow know the request path for the handler that creates the HTML for you, you can place it in any html container you want. Check out which request it generates for your report. :rose:
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates -
Any type of reporting engine I think renders an HTML, to place it inside a browser. So If you somehow know the request path for the handler that creates the HTML for you, you can place it in any html container you want. Check out which request it generates for your report. :rose:
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET TemplatesThanks for reply, I'm designing a report which contain alot of component in addition to CrystalReportViewer1 ,, then i'd like to view all pages of the report as html , I hope I can do it
jooooo
-
Any type of reporting engine I think renders an HTML, to place it inside a browser. So If you somehow know the request path for the handler that creates the HTML for you, you can place it in any html container you want. Check out which request it generates for your report. :rose:
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templatesso thanks i found it CrystalReportViewer1.SeparatePages = false;
jooooo