I have a table in place on a page, and I am adding controls
to it with code in the Page_Load sub, similar to this:


Dim ttRow As New TableRow()
Dim ttCell As New TableCell()
Dim ttButton As New Button()

tbltt.Rows.Add(ttRow)
tbltt.Rows(0).Cells.Add(ttCell)
tbltt.Rows(0).Cells(0).Controls.Add(ttButton)

this works fine, but the problem is that I don't know how to
get access to the click event of the Button control.
Is it do-able, and if so, how?