Código:
la cosa es que no ejecuta el evento pero cuando colocoLinkButton lblLoc = new LinkButton(); lblLoc.ID = "lblLocal_" + i; lblLoc.Text = infoTxp.Local + "<br />"; lblLoc.Command += new CommandEventHandler(EculinkInfo); lblLoc.CommandName = infoTxp.Tarjetacuenta.ToString(); if (infoTxp.FechaTrx == Dt) lblLoc.Attributes.Add("style", "color:red;"); phLocal.Controls.Add(lblLoc); protected void EculinkInfo(object sender, CommandEventArgs e) { Form form = (Form)LoadControl("~/Form.ascx"); form.TarjetaCuenta = e.CommandName; Item.Controls.Clear(); Item.Controls.Add(form); }
<asp:LinkButton ID="wer" runat="server" Text="123" OnCommand="EculinkInfo" CommandName="123"></asp:LinkButton>
lo ejecuta perfectamente alguien sabe xq ?
Gracias