We have a classic ASP page that calls a report created in Crystal Reports 7. The report resides in the web application and the call is:
The Windows server where the web application resides uses an old version of the CRViewer:
The calls to the Crystal Reports 7 report no longer works. We also have Crystal Reports XI. Is there a way to call an XI version of the report from the classic ASP page?
Code:
popupWin = window.open('REPORTS/annual_invoice.rpt?init=actx&rf=1&user0=UN&password0=PW&prompt0=<%=request("fy")%>&cmd=rfsh&vfmt=html_page&viewer=html_page&page=1',
"remote", "resizable, width=750, height=400");
The Windows server where the web application resides uses an old version of the CRViewer:
Code:
<object ID="CRViewer" WIDTH="0" HEIGHT="0" CLASSID="C4847596-972C-11D0-9567-00A0C9273C2A" codebase="activex/CRViewer.dll#Version=2,2,4,36" VIEWASTEXT></object>
The calls to the Crystal Reports 7 report no longer works. We also have Crystal Reports XI. Is there a way to call an XI version of the report from the classic ASP page?