[resolved]Report Arguments
Posted: Mon Sep 14, 2009 3:24 pm
I opened the file ReportArguments.mrt of the examples winForm through a project web using StiWebViewer
But I am not getting to carry the report, when clicking in OK of Form
I added the code below in the page_load
When carrying it it makes up the form it is exhibited, when clicking in the ok StiWebViewer, but it doesn't carry the report.
What should be made ?
But I am not getting to carry the report, when clicking in OK of Form
I added the code below in the page_load
Code: Select all
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
StiReport mrt = new StiReport();
mrt.Load("G:\\jrnet\\Report\\ReportArguments.mrt");
StiWebViewer1.Report = mrt;
}
}
When carrying it it makes up the form it is exhibited, when clicking in the ok StiWebViewer, but it doesn't carry the report.
What should be made ?