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

Popular posts from this blog

shopping cart - Page redirect not working PHP -

php - How to modify a menu to show sub-menus -

python - Installing PyDev in eclipse is failed -