RDLC 仅在首页上打印页眉
有没有办法只在第一页显示报表标题?正如预期的那样,PageHeader.PrintOnFirstPage 仅显示或隐藏第一页的标题。客户希望标题仅显示在第一页上,有点像文档中的标题。我查看了 MS-RDL.pdf 和 RDL200501 没有运气。我的报告是 RDLC 而不是 RDL,但这应该不重要。如果没有简单的解决方案,我将考虑编写自定义代码来抑制页面>上的标题1.
Is there a way to show the report header only on the first page? Just as expected the PageHeader.PrintOnFirstPage only shows or hides the header for the first page only. The customer wants the header to show up only on the first page, kinda like a title in a document. I looked at MS-RDL.pdf and RDL200501 with no luck. My reports are RDLC not RDL but it should not matter. If there is no straightforward solution I will look into writing custom code to supress the header on pages > 1.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只需要将标题放在第一页上,为什么还要费力地将其放入
PageHeader
中呢?相反,完全删除
PageHeader
并直接在最顶部的正文中设计您想要的任何内容作为“标题”。只是我的两分钱。
If you need the header to be on the first page only, why struggle to put it inside the
PageHeader
anyway?Instead, remove the
PageHeader
altogether and design whatever you want as the 'header' directly at the top most body.Just my two cents.