asp:Button Click event not being fired

后端 未结 2 1872
春和景丽
春和景丽 2021-01-22 06:28

I am dynamically adding rows in an asp table. In each row of the table I am also including a button which has a SelectProduct_Click event.

The problem is that even thou

相关标签:
2条回答
  • 2021-01-22 07:17

    @Oded - you are absolutely right about the right timing to add dynamic controls. However it is not written on which event he is trying to add the button.

    0 讨论(0)
  • 2021-01-22 07:19

    You need to learn about the ASP.NET page lifecycle.

    In order for dynamic controls to fire their events on postback, they need to be recreated and attached to the event handler again.

    The best place to create (and re-create) dynamic controls is in the OnInit event handler.

    0 讨论(0)
提交回复
热议问题