• CrystalReport第一步


    1、添加新项->Reporting->CrystalReport1.rpt

    2、CrystalReport1.rpt这里大家慢慢摸索

    3、建立一个webform1.spx页面,工具箱中拖入CrystalReportViewer到页面中

    4、webform1.aspx.cs

            protected void Page_Load(object sender, EventArgs e)
            {
                ReportDocument oRpt = new ReportDocument();
                string RptDir=Server.MapPath("CrystalReport1.rpt");
                oRpt.Load(RptDir);
                DataSet1 ds = new DataSet1();

                //获得数据
                SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["TestDBConnectionString"].ConnectionString);
                SqlCommand command = conn.CreateCommand();
                command.CommandType = CommandType.Text;
                command.CommandText = "SELECT * FROM Table1";
                SqlDataAdapter da = new SqlDataAdapter(command);
                da.Fill(ds.Table1);
                oRpt.SetDataSource(ds);
                CrystalReportViewer1.ReportSource = oRpt;
            }

    5、运行
  • 相关阅读:
    二进制运算
    python魔法函数__dict__和__getattr__的妙用
    logging模块配置笔记
    一个python爬虫工具类
    和我一起学爬虫(一)
    不一样的谷歌搜索
    CentOS6.4安装辅助NIS的流程
    ROS6.16开始支持802.11ac了,扫盲下
    centos 安装 Splunk
    扫盲贴2.5寸移动硬盘的厚度有几种
  • 原文地址:https://www.cnblogs.com/yidianfeng/p/1798343.html
Copyright © 2020-2023  润新知