• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Asp.netReport动态生成

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

rdlc报表实质上是一个xml文件,如果要实现动态报表,就需要动态生成rdlc文件,实质上就是读写xml文件:

  protected XmlDocument GenerationAddReportColumn(IList<ReportColumn> columnList,
           string fromRdlcPath, string toRdlcPath)
        {
            XmlDocument xmlDoc = new XmlDocument();
            xmlDoc.Load(Server.MapPath(fromRdlcPath));

            XmlNodeList fileds = xmlDoc.GetElementsByTagName("Fields");
            XmlNodeList tablixColumns = xmlDoc.GetElementsByTagName("TablixColumns");
            XmlNodeList tablixMembers = xmlDoc.GetElementsByTagName("TablixColumnHierarchy");
            XmlNodeList tablixRows = xmlDoc.GetElementsByTagName("TablixRows");

            foreach (var item in columnList)
            {
                //添加Field节点
                XmlNode filedNode = fileds.Item(0).FirstChild.CloneNode(true);
                if (!fileds.Item(0).ChildNodes.Cast<XmlNode>().Any(c=>c.Attributes["Name"].Value==item.Field))
                {
                    filedNode.Attributes["Name"].Value = item.Field;
                    filedNode.FirstChild.InnerText = item.Field;
                    filedNode.ChildNodes[1].InnerText = string.IsNullOrWhiteSpace(item.FieldType) ? "System.String" : item.FieldType;
                    fileds.Item(0).AppendChild(filedNode);
                }

                //添加TablixColumn
                XmlNode tablixColumn = tablixColumns.Item(0).FirstChild;
                XmlNode newtablixColumn = tablixColumn.CloneNode(true);
                newtablixColumn.FirstChild.InnerText = item.Width;
                tablixColumns.Item(0).AppendChild(newtablixColumn);

                //TablixMember
                XmlNode tablixMember = tablixMembers.Item(0).FirstChild.FirstChild;
                XmlNode newTablixMember = tablixMember.CloneNode(true);
                tablixMembers.Item(0).FirstChild.AppendChild(newTablixMember);

                var tablixRowsRowCells1 = tablixRows.Item(0).FirstChild.ChildNodes[1];
                XmlNode tablixRowCell1 = tablixRowsRowCells1.FirstChild;
                XmlNode newtablixRowCell1 = tablixRowCell1.CloneNode(true);
                var textBox1 = newtablixRowCell1.FirstChild.ChildNodes[0];
                textBox1.Attributes["Name"].Value = "Textbox_"+item.Field;

                var paragraphs = textBox1.ChildNodes.Cast<XmlNode>().Where(c => c.Name == "Paragraphs").FirstOrDefault();
                paragraphs.FirstChild.FirstChild.FirstChild.FirstChild.InnerText = item.ColumnName;
                var defaultName1 = textBox1.ChildNodes.Cast<XmlNode>().Where(c => c.Name == "rd:DefaultName").FirstOrDefault().InnerText = "Textbox_" + item.Field;

                tablixRowsRowCells1.AppendChild(newtablixRowCell1);

                var tablixRowsRowCells2 = tablixRows.Item(0).ChildNodes[1].ChildNodes[1];
                XmlNode tablixRowCell2 = tablixRowsRowCells2.FirstChild;
                XmlNode newtablixRowCell2 = tablixRowCell2.CloneNode(true);
                var textBox2 = newtablixRowCell2.FirstChild.ChildNodes[0];
                textBox2.Attributes["Name"].Value = item.Field;

                var paragraphs2 = textBox2.ChildNodes.Cast<XmlNode>().Where(c => c.Name == "Paragraphs").FirstOrDefault();
                paragraphs2.FirstChild.FirstChild.FirstChild.FirstChild.InnerText = "=Fields!" + item.Field + ".Value";
                var defaultName2 = textBox2.ChildNodes.Cast<XmlNode>().Where(c => c.Name == "rd:DefaultName").FirstOrDefault().InnerText = item.Field;

                tablixRowsRowCells2.AppendChild(newtablixRowCell2);

            }

            xmlDoc.Save(Server.MapPath(toRdlcPath));
            return xmlDoc;

        }
    /// <summary>
    /// 报表列描述
    /// </summary>
    public class ReportColumn
    {
        public string Field { get; set; }

        public string ColumnName { get; set; }

        public string Width { get; set; }

        public string FieldType { get; set; }
    }

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap