Hi
i want to bind the image in telerik reporting picture Box.
image is pass as string as report parameter from aspx page. code is like this
string bmpStr = Request.Form["SigImgData"];
var report = new DailyJobReport();
InstanceReportSource reportSource = new InstanceReportSource();
reportSource.ReportDocument = report;
report.ReportParameters["Id"].Value = 109520;
report.ReportParameters["ImageString"].Value = bmpStr;
this.ReportViewer1.ReportSource = reportSource;
can any one help me on this plz?
i want to bind the image in telerik reporting picture Box.
image is pass as string as report parameter from aspx page. code is like this
string bmpStr = Request.Form["SigImgData"];
var report = new DailyJobReport();
InstanceReportSource reportSource = new InstanceReportSource();
reportSource.ReportDocument = report;
report.ReportParameters["Id"].Value = 109520;
report.ReportParameters["ImageString"].Value = bmpStr;
this.ReportViewer1.ReportSource = reportSource;
can any one help me on this plz?