I am using a repeater to populate a table. Inside the table I have a row that contains a label, and two drop down boxes that i need to display. When I use the repeater and wrap the table with the header, item and footer templates and try to run my code it can not find the controls in that row. What do I need to do? Here is my code for the table that I am working on, the row that I am having problems with is outlined in red. Thanks for you help.
<asp:repeater ID=CollectionsTable runat="server">
<headertemplate>
<table width="100%" border="1" align="center">
<tr>
<td align="center" nowrap colspan="8"><font size="-1"> Billing Information </font></td>
<td align="center" nowrap colspan="7"><font size="-1"> Insurance Company Reimburstment Information </font></td>
</tr>
<tr>
<td align="center" nowrap colspan="3"><font size="-1"> As - Billed Information </font></td>
<td align="center" nowrap colspan="5"><font size="-1"> As - Billed Allowable Fee Estimation </font></td>
<td align="center" nowrap colspan="3"><font size="-1"> Insurance Company Payment </font></td>
<td align="center" nowrap colspan="4"><font size="-1"> Patient Payment Responsiblity </font></td>
</tr>
<tr>
<td align="center" nowrap><font size="-2"> CPT Code </font></td>
<td align="center" nowrap><font size="-2"> Description </font></td>
<td align="center" nowrap><font size="-2"> Standard Fee </font></td>
<td align="center" nowrap><font size="-2"> Total </font></td>
<td align="center" nowrap><font size="-2"> Ins Co Esti </font></td>
<td align="center" nowrap><font size="-2"> Patient Esti </font></td>
<td align="center" nowrap><font size="-2"> CoPayment </font></td>
<td align="center" nowrap><font size="-2"> Cont Write Off </font></td>
<td align="center" nowrap><font size="-2"> Estimated </font></td>
<td align="center" nowrap><font size="-2"> Actual Paid </font></td>
<td align="center" nowrap><font size="-2"> Variance </font></td>
<td align="center" nowrap><font size="-2"> Estimated </font></td>
<td align="center" nowrap><font size="-2"> Ins Actual </font></td>
<td align="center" nowrap><font size="-2"> PPTD </font></td>
<td align="center" nowrap><font size="-2"> Still Owed </font></td>
</tr>
</headertemplate>
<itemtemplate>
<tr>
<td align="center" nowrap><%# Conatiner.DataItem("CPTCode")%></td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
<td align="center" nowrap> </td>
</tr>
</itemtemplate>
<footertemplate>
<tr>
<td colspan="8">Next Patient: <asp:label ID="Lbl_NextPatient" runat="server"/></td>
<td colspan="3" align="center" nowrap>
<asp:dropdownlist ID="DD_InsurPayAction" Font-Size="8" DataTextField="CollActionDescription" runat="server"/>
</td>
<td colspan="4" align="center" nowrap>
<asp:dropdownlist ID="DD_PatPayAction" Font-Size="8" DataTextField="CollActionDescription" runat="server"/>
</td>
</tr>
</table>
</footertemplate>
</asp:repeater>