vb.net - VB + DevExpress Button is not firing click event -
my button doesn't fire click event
<dx:aspxbutton id="btnlancar" runat="server" text="lançar" autopostback="true" /> protected sub btnlancar_click(byval sender object, byval e system.eventargs) handles btnlancar.click end sub
the aspxbutton element needs have onclick attribute set.
<dx:aspxbutton id="btnlancar" runat="server" text="lançar" autopostback="true" onclick="btnlancar_click" />
Comments
Post a Comment