Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ras and ASP multiple reports at the same time

Status
Not open for further replies.

kifaro

Programmer
Oct 4, 2002
54
0
0
US
Hello, One of the problems with crystal's samples in asp w/ ras is that you can't do multiple reports. I am in the process of trying to work around that by making different session objects. I have been able to get the first page to show, but when I click next I need to pass my parameter along with whatever crystal sends. I am using the interactive viewer. Any suggestions?? Here is a quick snippet of how I am doing it:

bFound=false
i=0
do until bFound=true
if not isobject(session("oclientdoc" & i)) then
bFound=true
else
i=i+1
end if

loop
.......
Set Session("oClientDoc" & i) = rptAppSession.CreateService("CrystalClientDoc.ReportClientDocument")

.......

<script>window.location.href='interactive.asp?ID=<%=i%>'</script>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top