os explico; tengo un .aspx en el que tengo lo siguiente:
Código aspx:
Ver original
<%@ Page Title="Hoja de Visas" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false" CodeBehind="HojaVisas.aspx.vb" Inherits="HojaDeGastos.HojaVisas" %> <asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"> </asp:Content> <asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <asp:DropDownList ID="ComboConceptosV1" runat="server" Height="25px" Width="175px" AutoPostBack="True"> </asp:DropDownList> <asp:Label ID="Label1" runat="server" Text="Descripción: "></asp:Label> <asp:TextBox ID="TextDescripcionV1" runat="server" BackColor="#CCCCCC" Width="190px"></asp:TextBox> <asp:Label ID="Facturable1" runat="server" Text="Facturable: "></asp:Label> <asp:RadioButtonList ID="RadioButtonFacturableV1" runat="server" AutoPostBack="True" RepeatDirection="Horizontal" RepeatLayout="Flow" CellPadding="-1" Enabled="False"> <asp:ListItem Value="1">SI</asp:ListItem> <asp:ListItem Value="2">NO</asp:ListItem> </asp:RadioButtonList> <asp:Label ID="Label2" runat="server" ForeColor="Red" Font-Bold="True"></asp:Label> <asp:Label ID="Orden1" runat="server" Text="Orden: "></asp:Label> <asp:TextBox ID="TextOrdenV1" runat="server" BackColor="#CCCCCC" Width="90px" Enabled="True" AutoPostBack="True"></asp:TextBox> <asp:Label ID="Proyecto1" runat="server" Text="Proyecto: "></asp:Label> <asp:TextBox ID="TextProyectoV1" runat="server" BackColor="#CCCCCC" Width="80px" Enabled="True" AutoPostBack="True"></asp:TextBox> <asp:Label ID="Importe1" runat="server" Text="Importe: "></asp:Label> <asp:TextBox ID="TextImporteV1" runat="server" BackColor="#CCCCCC" Width="50px" Enabled="True" AutoPostBack="True"></asp:TextBox> <asp:Label ID="validacionImporteV1" runat="server" ForeColor="Red" Font-Bold="True"></asp:Label> </asp:Content>
Lo que quiero es que todo lo que he puesto en el codigo .aspx se vaya creando automaticamente. Es decir, que si un usuario termina de introducir en el Importe1 un valor, que me genere de nuevo todo (ComboConceptosV1, label1, TextDescripcionV1, ... ) hasta llegar al validacionImporteV1.
¿alguien tiene alguna idea de como hacerlo?