Advertisement
Advertisement
| 05.27.2008 at 11:21PM PDT, ID: 23437164 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: |
<asp:Repeater id="R" onitemcommand="R_ItemCommand" runat="server">
<HeaderTemplate>
<asp:Button ID="A" runat="server" CommandName="AddMe" Text="Add Line" />
<asp:Button ID="D" runat="server" CommandName="DelMe" Text="Delete" />
<asp:DropDownList id="L" Runat="server" />
</HeaderTemplate>
<ItemTemplate>
<tr>
<td>
<asp:TextBox Text='<%# Bind("ROW") %>' ID="ROW"runat="server" />
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
|