|
-
Jan 4th, 2003, 02:15 PM
#1
Thread Starter
New Member
server control events
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|