adding image fast report .net web

edited May 2013 in FastReport .NET
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

dddfw.png

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

  • edited 6:05AM
    Hai Bahadir,

    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

Leave a Comment