繁体   English   中英

SSRS多页报告

[英]SSRS multi page report

我必须生成一个SSRS多页报告。 我有一个列表“数据”,必须执行以下操作。
数据包含姓名,工资和地址

data[0] = abc,1000,def
data[1] = pqr,2000,xyz

for(int i =0; i<data.Count; i++)
{    
   //when the value of i is 0 information must be printed on 1st page.
   //when value of is 1 information must be printed on 2nd page and so on...
}

我相信您正在寻找的是一个for循环构造,如下所示:

for (int i = 0; i < data.Length;)
{
    int page = ++i;

    // Write the data on the page in the int variable above.
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM