Hi All,
I have a strange problem. We use legacy reporting system seagate(7) to genereate reports (*.rpt). We had a need to deliver those reports via our web portal (C# and dont net 1.1 framework). I found a limitation that in dot net 1.1 I could not have export button using the viewer, so to overcome this I upgraded the application to dot net 2.x version. With this upgrade now I have the ability to do the export, however some reports span over multiple pages and in that case, the CrystalReportViewer does not create navigation(prev and next) buttons. I will try to put most of the information that is relative, please let me know if I overlooked something.
Dev env VS2008
aspx page contains following code
<%@ Register assembly="CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
....and here is the declaration
<CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
AutoDataBind="true" oninit="CrystalReportViewer1_Init"
DisplayGroupTree=True
DisplayPage=True
DisplayToolbar=True
EnableDrillDown=true
EnableToolTips=true
HasCrystalLogo=True
HasDrillUpButton=True
HasExportButton=True
HasGotoPageButton=True
HasPageNavigationButtons=True
HasPrintButton=True
HasRefreshButton=True
HasSearchButton=True
HasToggleGroupTreeButton=True
HasViewList=True
HasZoomFactorList=True
/>
Oh by the way, the report does show, Export, Print, Group Tree, View History controls with images and Crystal Loggo. But for some stupid mistake of mine(most likely) its not showing the navigation controls. I have checked the image folder and it does have all the imges that should be required for this. I will appreciate help as I am stuck here for whole 1 day with no success.
Thanks
Edited by: KhalidAli on Apr 21, 2010 12:03 AM