Crystal Report 7 vs Win2003
Originally, I use Crystal Report 7 Web Service, ASP and Window 2000 to view Security Log in Event Viewer. All work properly. Now, I change to Window 2003, the crystal report can open but only blank screen (no data) is shown.
Could you please help me to find out what going wrong? Many thanksssssss!
Here is the code:
*************
<%@ Language=VBScript %>
<BODY BGCOLOR=C6C6C6>
<OBJECT ID="CRViewer"
CLASSID="CLSID:C4847596-972C-11D0-9567-00A0C9273C2A"
WIDTH=100% HEIGHT=100%
CODEBASE="/viewer/activeXViewer/activexviewer.cab#Version=7,0,100,52" VIEWASTEXT>
<PARAM NAME="EnableRefreshButton" VALUE=1>
<PARAM NAME="EnableGroupTree" VALUE=0>
<PARAM NAME="DisplayGroupTree" VALUE=0>
<PARAM NAME="EnablePrintButton" VALUE=1>
<PARAM NAME="EnableExportButton" VALUE=1>
<PARAM NAME="EnableDrillDown" VALUE=1>
<PARAM NAME="EnableSearchControl" VALUE=1>
<PARAM NAME="EnableAnimationControl" VALUE=1>
<PARAM NAME="EnableZoomControl" VALUE=1>
</OBJECT>
<SCRIPT LANGUAGE="VBScript">
<!--
On Error Resume Next
Dim webBroker
Set webBroker = CreateObject("WebReportBroker.WebReportBroker")
URL = Location.Href
URL=Replace(URL,"asp","rpt")
Dim webSource
Set webSource = CreateObject("WebReportSource.WebReportSource")
webSource.ReportSource = webBroker
webSource.URL = URL
webSource.PromptOnRefresh = True
CRViewer.ReportSource = webSource
CRViewer.ViewReport
-->
</SCRIPT>
</BODY>
I found a event log:
***************
Faulting application IEXPLORE.EXE, version 6.0.3790.0, faulting module crviewer.dll, version 7.0.100.52, fault address 0x0001d334

