So, I have a repeater control that lists a bunch of information for each employee ... one by one. The problem is that when I try to print this list, I have regular posts starting from the middle of the page. I would like to solve this problem by causing a page break at the beginning or end of each record / repeat element. How to do it?
If that helps, this is the page structure:
<body> <form> <asp:repeater> <itemtemplate> <table> <bunch of html> </bunch of html> </table> </itemtemplate> </asp:repeater> </form> </body>
source share