【发布时间】:2015-09-09 17:21:49
【问题描述】:
我在开始时有一个带有一些静态信息的 rdlc 报告,在此信息之后有一个子报告将根据数据源呈现 N 个子子报告,我需要在单独的页面中呈现每个子报告的数据。结构是这样的伪代码:
<Report>
<Tablix>....</Tablix>
<SubReport>
subreports.rdlc
</SubReport>
</Report>
subreport.rdlc
<Report>
<Tablix>
<TablixRow>some information</TablixRow>
<TablixRow details>
<SubReport>othersubreport.rdlc</SubReport>
<PageBreak>
<BreakLocation>End</BreakLocation>
</PageBreak>
</TablixRow>
</Tablix>
</Report>
我在表格的详细信息行组中的每个子报表的末尾放置了一个分页符,但是子报表中的分页符似乎有问题。这是一个已知的问题?有什么办法可以解决这个问题吗?
【问题讨论】: