I'm just getting into ASP.Net and Web Development. One question that I have is how can I create online reports that need to be printed with page breaks?
Thanks,
Printable View
I'm just getting into ASP.Net and Web Development. One question that I have is how can I create online reports that need to be printed with page breaks?
Thanks,
If you have a print stylesheet, you can use the page-break-after property to specify when a page break should occur.
For example, if you have 5 gridviews and want 1 gridview on each page, get the gridview's CSS Class, and add
to its CSS class.Code:page-break-after:always;
Thanks mendhak...that worked!
Awesome! Add resolved.