在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
ReportViewer reportViewer = new ReportViewer(); //报表数据源 ReportDataSource datasource = null; //设置数据 DataSet ds = null; //请自行绑定数据 //指定报表模板地址 reportViewer.LocalReport.ReportPath = Server.MapPath("temp.rdlc"); //报表数据源设置 datasource = new ReportDataSource("TshirtMugData_Tshirt", ds.Tables[0]); // 报表参数 ReportParameter[] reportpara = new ReportParameter[2]; reportpara[0] = new ReportParameter("Date", Date); reportViewer.LocalReport.SetParameters(reportpara); reportViewer.Visible = true; // 写Excel文件 byte[] bytes = reportViewer.LocalReport.Render("Excel", null, out strMimeType, out strEncoding, out strFileNameExtension, out strStreamIds, out warnings); if (!System.IO.File.Exists(filepath + filename)) { using (System.IO.FileStream fs = new System.IO.FileStream(filepath + filename, System.IO.FileMode.Create)) { //写入文件 fs.Write(bytes, 0, bytes.Length); } } |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论