zoukankan      html  css  js  c++  java
  • rdlc插入图像(.net2010)

    项目中要求要实现的功能是:在报表中中体现一个图片。

    经过摸索:三种途径:首先说明的是rdlc有一个reportdata;

    里边有一些属性:也就是说在设计rdlc的时候有一些属性设置;

    在图片上有:三个选项:对应的是数据库===对应的是把图片按二进制存储;

    一个是内嵌的图片:这个有个图片的文件夹;先要添加进入;然后选择来源,就能有了‘

    另一种是外部图片;主要指的是保存路径和外边动态设置的图片;

    这首先要做的就是设置一个参数有一个文件夹就是;

    然后再图片来源上可以做的就是这样的内容:选择外部;找到参数并选择参数的值;

    在asp。net中必须动态添加这个参数;声明和赋值一体进行;

    this.ReportViewer1.LocalReport.ReportPath = "Report\\5.3.rdlc";
                this.ReportViewer1.LocalReport.EnableExternalImages = true;
                ReportParameter[] image = new ReportParameter[1];
                string path = "file:///" + Server.MapPath("~") + "\\images\\login.jpg";   //图片地址
                image[0] = new ReportParameter("imagepara", path);   //image1必须和报表参数一致
                this.ReportViewer1.LocalReport.SetParameters(image);

    就可以动态添加数据了。

  • 相关阅读:
    爬虫之Selenium库
    爬虫之pyquery库
    爬虫之BeautifulSoup库
    爬虫之Requests库
    爬虫之Re库
    在Flask中使用Celery
    Celery-分布式任务队列
    MongoDB
    Redis Cluster
    如何使用mongo shell
  • 原文地址:https://www.cnblogs.com/ewyb/p/2225082.html
Copyright © 2011-2022 走看看