can i pass parameter into report using deme version?
Posted: Tue Sep 04, 2012 1:46 pm
Hello all
can i pass parameter from my web application into my report in the demo version?
this is my query in my report :
select * from ViewEmpDep where CatID = {param1}
then i declared the veriable in my report.
and this is my code in my C# web application:
StiReport report = new StiReport();
report.LoadFromString(a);
report["CatID"] = 2;
StiWebViewerFx1.Report = report;
The report display but with no data inside it, is that because i am using demo version so parameter does not pass properly from my web application into my report file, or there is another reason?
thank you
can i pass parameter from my web application into my report in the demo version?
this is my query in my report :
select * from ViewEmpDep where CatID = {param1}
then i declared the veriable in my report.
and this is my code in my C# web application:
StiReport report = new StiReport();
report.LoadFromString(a);
report["CatID"] = 2;
StiWebViewerFx1.Report = report;
The report display but with no data inside it, is that because i am using demo version so parameter does not pass properly from my web application into my report file, or there is another reason?
thank you