Hyuga Posted August 19, 2005 Posted August 19, 2005 Situation: I have a form with a left menu, this menu has 5 LinkButtons. Depending on the option clicked, in the right side of the form it should appear different controls, that I will create dinamically. The Problem: Appeared when I have to handle the events generated from the dinamically generated controls. In concrete, with one of the options I create a button that, when the user clicked it, has to clear the placeholder and put some other things inside it (text, controls, whatever). The code: Private WithEvents bActual As Button Sub Page_Load(sender As Object, e As EventArgs) bActual = New Button() AddHandler bActual.Click, AddressOf MuestraForm End Sub Sub MostrarSTgrupo(sender As Object, e As System.EventArgs) ' boton para crear tareas 'Fijamos las propiedades bActual.id = "bCrearTarea" bActual.Text = "Crear Nueva Tarea" listadoTareas.Controls.Add(bActual) End Sub Sub MuestraForm(sender As Object, e As System.EventArgs) mensaje.text="Vamos a mostrar el formulario" End Sub and the html "interesting" part: <body> <form runat="server"> <div id="menu"> <h5>Supervisión de Tareas</h5> <ul> <li class="enlaces"><asp:LinkButton id="STgrupo" Text="De Grupo" onClick="MostrarSTgrupo" runat="server" /></li> </ul> </div> <div id="controles"> <asp:PlaceHolder id="listadoTareas" runat="server"></asp:PlaceHolder> <asp:Label id="mensaje" runat="server" /> </div> </form> </body> Notes: I've declared the variable button as global to add the WithEvents clause, and I've created the button and declared his event handler in Page_Load because I've read that the binding of the event form the control and his event handler should be done there. Any idea or corrections to this pieces of code will be appreciated, thanks everybody! Quote
wayneph Posted August 22, 2005 Posted August 22, 2005 The code from your "MostrarSTgrupo" Sub needs to be executed as part of the Page_Load. The ID needs to be set and added back into the forms controls collection before it will fire the events. Otherwise, the rest looks OK. Quote wayne The Road Goes on Forever and the Party Never Ends - Robert Earl Keen
Hyuga Posted August 23, 2005 Author Posted August 23, 2005 Wayneph, thanks for the answer ;) The code from your "MostrarSTgrupo" Sub needs to be executed as part of the Page_Load. I don't want to execute this code until it is needed, I only want to create the button when the user clicked one of the options of my menu. So it should be created after the Page_Load event, when handling with postback events. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.