繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> ASP基础 >> ASP Call Crystal Report with Store Procedure(2)

ASP Call Crystal Report with Store Procedure(2)

2006-06-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介:'ActiveXPluginViewer.ASP Seagate Report Viewer Plug-In document.writeln(''); document.writeln(''); 'AlwaysRequiredSteps.ASP

'ActiveXPluginViewer.ASP

Seagate Report Viewer Plug-In

'AlwaysRequiredSteps.ASP

<%

'=================================================================

' This file the ALWAYS REQUIRED STEPS for using the Automation

' Server

'

'===================================================================================

'Create the Crystal Reports Objects

'===================================================================================

'

'You will notice that the Crystal Reports objects are scoped as session variables.

'This is because the page on demand processing is performed by a prewritten

'ASP page called "rptserver.ASP". In order to allow rptserver.ASP easy access

'to the Crystal Report objects, we scope them as session variables. That way

'any ASP page running in this session, including rptserver.ASP, can use them.

' - 1 -

' CREATE THE APPLICATION OBJECT

If Not IsObject (session("oApp")) Then

Set session("oApp") = Server.CreateObject("CrystalRuntime.Application")

End If

'This "if/end if" structure is used to create the Crystal Reports Application

'object only once per session. Creating the application object - session("oApp")

'loads the Crystal Report Design Component automation server (craxdrt32.dll) into memory.

'

'We create it as a session variable in order to use it for the duration of the

'ASP session. This is to elimainate the overhead of loading and unloading the

'craxdrt32.dll in and out of memory. Once the application object is created in

'memory for this session, you can run many reports without having to recreate it.

' - 2 -

' CREATE THE REPORT OBJECT

'

'The Report object is created by calling the Application object's OpenReport method.

Path = Request.ServerVariables("PATH_TRANSLATED")

While (Right(Path, 1) <> "\" And Len(Path) <> 0)

iLen = Len(Path) - 1

Path = Left(Path, iLen)

Wend

'This "While/Wend" loop is used to determine the physical path (eg: C:\) to the

'Crystal Report file by translating the URL virtual path (eg: http://Domain/Dir)

'OPEN THE REPORT (but destroy any previous one first)

If IsObject(session("oRpt")) then

Set session("oRpt") = nothing

End if

Set session("oRpt") = session("oApp").OpenReport(path & reportname, 1)

'This line uses the "PATH" and "reportname" variables to reference the Crystal

'Report file, and open it up for processing.

'

'Notice that we do not create the report object only once. This is because

'within an ASP session, you may want to process more than one report. The

'rptserver.ASP component will only process a report object named session("oRpt").

'Therefor, if you wish to process more than one report in an ASP session, you

'must open that report by creating a new session("oRpt") object.

session("oRpt").MorePrintEngineErrorMessages = False

session("oRpt").EnableParameterPrompting = False

'These lines disable the Error reporting mechanism included the built into the

'Crystal Report Design Component automation server (craxdrt32.dll).

'This is done for two reasons:

'

'1. The print engine is executed on the Web Server, so any error messages

' will be displayed there. If an error is reported on the web server, the

' print engine will stop processing and you application will "hang".

'

'2. This ASP page and rptserver.ASP have some error handling logic desinged

' to trap any non-fatal errors (such as failed database connectivity) and

' display them to the client browser.

'

'**IMPORTANT** Even though we disable the extended error messaging of the engine

'fatal errors can cause an error dialog to be displayed on the Web Server machine.

'For this reason we reccomend that you set the "Allow Service to Interact with Desktop"

'option on the "World Wide Web Publishing" service (IIS service). That way if your ASP

'application freezes you will be able to view the error dialog (if one is displayed).

%>

责任编辑:admin
相关文章