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

How to call Seagate Crystal Report with parameter?

Status
Not open for further replies.

vincentius

Programmer
Feb 11, 2002
17
0
0
ID
Hi all,

How to call Seagate Crystal Report from ASP with some parameters?

Thanks,

Vincent.
 
The Parameters for the report can be passed as prompt0, prompt1........... depending upon the number of parameters expected in the report. If ur opening the report as a child window then pass the value for these parameters as a query string.
eg. window.open("check.rpt?prompt0=1&prompt1=34")

Or u can submit to the report and store the values for the report parameters in the hidden variables in the calling asp.

Hope this helps.
 
Thanks 1209. It works.

How to connect it to MS SQL without password?

Should I write :

<input type=hidden name=user0 value=&quot;sa&quot;>
<input type=hidden name=password0 value=&quot;sa&quot;>

OR

<input type=hidden name=user0 value=&quot;sa&quot;>

Thanks,

Vincent.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top