Hello All!
I'm having trouble implementing a page-break-inside tag within my dynamic web page. The main piece of the page is a repeater, which creates a table for each row returned in the DataSource. It currently will break the table in the middle when a page break is encountered. I'm hoping to have it not break the table in the middle, and I assume this is the tool to use. Here is the relevant section of code, I'm just not sure where the page-break tag should go:
<form runat="server">
<asp:Repeater ID="rptBid" runat="server">
<ItemTemplate>
<table border="0" cellpadding="0" cellspacing="0">
<p STYLE="page-break-inside: avoid">
<tr>
<td width="100" align="left"><span class="style13">Project Name:</span></td>
<td width="250" align="left"><span class="style11"><u><%#Container.DataItem("ProjName ")%></u></span></td>
<td width="100" align="left">



