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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

crystal report from ASP

Status
Not open for further replies.

JKingdom

Programmer
May 9, 2004
141
AE
hi ..

where i can find a code that opens crystal report from ASP page ?? am suing sql database ..
 
i used the way that posted in FAQ149-1396 ... am not sure if i've done it correcty or not ..

//////

<script type="text/vbscript">


Dim webBroker, webSource
Set webBroker = CreateObject("WebReportBroker.WebReportBroker")
Set webSource = CreateObject("WebReportSource.WebReportSource")

webSource.ReportSource = webBroker
webSource.URL = "budDetails.rpt"
webSource.PromptOnRefresh = False
CRViewer.ReportSource = webSource
CRViewer.ViewReport

</script>
 
So there's a problem?????? If so where?

Please also post the version of crystal you're using

Patrick
 
there is no error .. it just doesn't open .. i don't get any errors in the asp page ..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top