ASP.NET(C#)

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

随笔分类 -  Reporting Service

摘要:1. 分页的控制方式 1.1. Reporting Services自动分页 在报表的页眉或者页尾添加文本框,调用全局变量=Globals!PageNumber 1.2. 根据记录条数来分页 当每条记录呈现的高度不一致,我们又希望让每页呈现的记录条数一致,那么我们可以通过记录条数来分页。在通过记录条数分页时,通常是根据记录条数来分组,然后在组的结束位置添加分页符。 在表、矩阵... 阅读全文
posted @ 2005-05-12 08:24 battlerstar 阅读(4362) 评论(2) 推荐(0)

摘要:using System; using System.Web.Services.Protocols; using ConsoleApplication1.reporting; class Sample { public static void Main() { ReportingService rs = new ReportingService(); rs.Credentials =... 阅读全文
posted @ 2005-05-09 16:40 battlerstar 阅读(708) 评论(1) 推荐(0)

摘要:using System; using System.Web.Services.Protocols; class Sample { public static void Main() { ReportingService rs = new ReportingService(); rs.Credentials = System.Net.CredentialCac... 阅读全文
posted @ 2005-05-09 16:18 battlerstar 阅读(841) 评论(0) 推荐(0)

摘要:using System; using System.Web.Services.Protocols; class Sample { public static void Main() { ReportingService rs = new ReportingService(); rs.Credentials = System.Net.Creden... 阅读全文
posted @ 2005-05-09 15:35 battlerstar 阅读(993) 评论(0) 推荐(0)