Can you elaborate on custom coding. Do you have any sample code that can be reused.I did come across some ASPs
but am not sure if I can use this code.If I can use this code to customize the requirement, then the questions asked earlier apply ...Thanks for your valuable input.
<%@ Language=VBScript %>
<%
'***************
'A simple example to show how to print a report to the web server printer
'Developed with Crystal Reports version 8
'
'See the other ASP samples from ASPXMPS8.EXE on Seagate's web site
'to see how to do other things like logon to a datasource, set parameter
'values, etc.
'***************
Option Explicit
Response.Expires = 0
If Not IsObject (session("oApp"

) Then
Set session("oApp"

= Server.CreateObject("CrystalRuntime.Application"

End If
If IsObject(session("oRpt"

) then
Set session("oRpt"

= nothing
End if
'*********Put your report file name in here
Set Session("oRpt"

= Session("oApp"

.OpenReport("c:\inetpub\
session("oRpt"

.MorePrintEngineErrorMessages = False
session("oRpt"

.EnableParameterPrompting = False
On Error Resume Next
session("oRpt"

.ReadRecords
If Err.Number <> 0 Then
Response.Write "Error " & Err.Number & ": " & Err.Description & " has occured reading records."
Else
If IsObject(session("oPageEngine"

) Then
set session("oPageEngine"

= nothing
End If
set session("oPageEngine"

= session("oRpt"

.PageEngine
End If
'Response.Redirect("rptserver.asp"

'This is to view the report
'*********Print a test page on your printer to get this information
session("oRpt"

.SelectPrinter "PSCRIPT.DLL","V7-4MP-TS2","V7-4MP-TS2"
If Err.Number <> 0 Then response.write "oRpt SelectPrinter failed with error [" & Err.Number & ": " & Err.Description & "]<br>" end if
'Print the report.
'session("oRpt"

.PrintOut False,1,False,1,2
session("oRpt"

.PrintOut False 'This will print out the report (other parameters default)
If Err.Number <> 0 Then
response.write "oRpt Printout failed with error [" & Err.Number
response.write ": " & Err.Description & "]<br>"
end if
%>
<html>
Report print attempt completed.
</html>