Hi,
In a page ASP when executing a report Crystal Reports 11. the screen of the report is all gray.
am using these pages ASP.
ActiveXPluginViewer.asp
AlwaysRequiredSteps.asp
Cleanup.asp
MoreRequiredSteps.asp
rptserver.asp
SmartViewerActiveX.asp
It seems to me that i need JavaPluginViewer.asp and need to install Java Runtime .. SO i Installed Java Runtime.. Still its gray in color...
I cdnt find JavaPluginViewer.asp file to include.. as we have for ex: MoreRequiredSteps.asp as below
{code}<%
'====================================================================================
' Retrieve the Records and Create the "Page on Demand" Engine Object
'====================================================================================
On Error Resume Next
session("oRpt").ReadRecords
If Err.Number <> 0 Then
Response.Write "Error Occurred Reading Records: " & Err.Description
Set Session("oRpt") = nothing
Set Session("oApp") = nothing
Session.Abandon
Response.End
Else
If IsObject(session("oPageEngine")) Then
set session("oPageEngine") = nothing
End If
set session("oPageEngine") = session("oRpt").PageEngine
End If
%>{code}
Can someone pls send it to me...
Thanks.