B
Bill Nicholson
I have a FormView control that works correctly until I put the bound
controls into this an asp table control:
This works fine:
<InsertItemTemplate>
<asp:TextBox ID="Customer01" runat="server" Text='<%# Bind("Customer")
%>' MaxLength="50" TabIndex="50"></asp:TextBox>
</InsertItemTemplate>
But this control does not appear in the IEnumerator ...
<asp:Table runat="server">
<asp:TableRow runat="server">
<asp:TableCell runat="server">
<asp:TextBox ID="Customer01" runat="server" Text='<%# Bind("Customer")
%>' MaxLength="50" TabIndex="50"></asp:TextBox>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks,
Bill Nicholson
Cincinnati, OH USA
controls into this an asp table control:
This works fine:
<InsertItemTemplate>
<asp:TextBox ID="Customer01" runat="server" Text='<%# Bind("Customer")
%>' MaxLength="50" TabIndex="50"></asp:TextBox>
</InsertItemTemplate>
But this control does not appear in the IEnumerator ...
<asp:Table runat="server">
<asp:TableRow runat="server">
<asp:TableCell runat="server">
<asp:TextBox ID="Customer01" runat="server" Text='<%# Bind("Customer")
%>' MaxLength="50" TabIndex="50"></asp:TextBox>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
Thanks,
Bill Nicholson
Cincinnati, OH USA