skip to Main Content

ASP.net display TextBox controls using a loop

On an aspx page I have several of the TextBox control rows added like this: <asp:Panel ID="panel1" runat="server" Visible="true"> <tr> <asp:TextBox ID="txt1" runat="server"</asp:TextBox> <asp:DropDownList ID="dd1" runat="server"> <asp:ListItem></asp:ListItem> <asp:ListItem></asp:ListItem> <asp:ListItem></asp:ListItem> </asp:DropDownList> </tr> <tr> <asp:TextBox ID="txt2" runat="server" ></asp:TextBox> <asp:DropDownList ID="dd2" runat="server"> <asp:ListItem></asp:ListItem>…

VIEW QUESTION
Back To Top
Search