从Crystal报表中的文件加载图像

时间:2012-03-13 14:53:12

标签: asp.net crystal-reports crystal-reports-xi

您好我正在使用c#在asp.net应用程序中处理水晶报表,我的问题是 生成的报告应具有使用以下代码生成的QR代码

            QRCode qrcode = new QRCode();
            qrcode.Data = "Id Asociacion Civil:" + query.fiIdAsocCivil + "\n" + "Fecha de Registro:" + query.fdFechaReg.ToShortDateString() + "\n" + "Nombre de la Asociación:" + query.fcRazonSocial;
            qrcode.X = 12;

            // Create QR-Code and encode barcode to Jpeg format
            qrcode.ImageFormat = ImageFormat.Jpeg;
            if (Request.ApplicationPath == "/")
            {
                qrcode.drawBarcode(@"\\cjfapppba\ssac\Ejemplo1.jpg");
            }
            else
            {
                qrcode.drawBarcode((MapPath(@"~/Ejemplo1.jpg")));
            }

        }
        catch (Exception x)
        {

            Label1.Text = x.Message;
            Label1.Visible = true;
        }

每次按“报告”按钮创建报告时,都会执行生成代码的代码并覆盖最后一个qrcode。我的问题是,如果我扫描qr代码它ios更新正确但在我的报告中它没有。我尝试添加一个OLE对象,如其他论坛建议但尚未成功。 有关如何实现这一目标的任何建议吗?

我使用此代码调用报告

  GeneraCodigo();

        switch (e.CommandName)
        {

            case "Registro":



                    var strRep = new StringBuilder();
                    strRep.Append("<script languaje=javascript>window.open('http://portalrpt/reportes/default.aspx?rep=SSAC/Constancia.rpt&mod=136&sf={AsocCivil.fiIdAsocCivil}=");

                    strRep.Append(idAC);



                    strRep.Append("','','width=670,height=570,resizable=yes,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes');</script>");

                    ClientScript.RegisterStartupScript(Page.GetType(), "WOpen", strRep.ToString());

方法GeneraCodigo()用于生成新的qr代码

1 个答案:

答案 0 :(得分:0)

您可能需要调整我为rendering LaTex equations in Crystal Reports建议的方法。