adding image fast report .net web
i am addding image on my report.i put textboxes and fill this boxes from parameters in code
my codes are here
protected void Button1_Click(object sender, EventArgs e)
{
Report report = new Report();
report.Load(Server.MapPath("fatura.frx"));
report.SetParameterValue("Param1", TextBox1.Text);
WebReport1.Report = report;
}
but when i start my code image is shifting and copy itself like that
and textboxes are not correct places...
how can i fix this..
i used this before
using (Report report = new Report())
{
report.Load(Server.MapPath("fatura.frx"));
WebReport1.Report.SetParameterValue("Param1", TextBox1.Text);
report.Show();
}
but it gives JIT error ...but report was ok..
my codes are here
protected void Button1_Click(object sender, EventArgs e)
{
Report report = new Report();
report.Load(Server.MapPath("fatura.frx"));
report.SetParameterValue("Param1", TextBox1.Text);
WebReport1.Report = report;
}
but when i start my code image is shifting and copy itself like that
and textboxes are not correct places...
how can i fix this..
i used this before
using (Report report = new Report())
{
report.Load(Server.MapPath("fatura.frx"));
WebReport1.Report.SetParameterValue("Param1", TextBox1.Text);
report.Show();
}
but it gives JIT error ...but report was ok..
Comments
Do you worked with WebReport and Dialog Form of FastReport??
Can you please tell me how to connect this on Report Runtime??
Thanks in Advance
Suvarnni