how to pass crystal report parameters through aspx
hai,
i 'm using crystal reports which is built in .net framework.i'm
getting problem in generating reports between two particular dates.my
requirement is as follows
i need to put two text boxes on an aspx page where i can input two
dates and on button click event it should display the report between
that
dates.
i need the code behind modification which i have to do for the button
click event
also need the formula which i have to use in crystal report and also
how i can pass the input parameters to crystal report.
i would prefer to get the date from a calender how can i do this
i want to expose this report as a web service .i need to pass the dates
as parameters from client's aspx page and should get the result from
the web service
how can i do these things
I am send the paramenters through query strings like below
window.open('reports/rptAAbyRecruiter.rpt?Prompt0='+ document.r1f3.fromdate.value + '&Prompt1='+ document.r1f3.todate.value + '&user0=sa&password0=&user0@CompanyLogo=sa&passwor d0@CompanyLogo=','','scrollbars=no,width=780,heigh t=580,resizable=0');
|