M
Majek
I have created a repeater with a linkbutton for each databound item.
When I fire off the repeater controls ItemCommand I execute the following...
For indx = 0 To rpContacts.Items.Count - 1
Dim btnMyContact As LinkButton =
CType(rpContacts.Items(indx).FindControl("btnContact"), LinkButton)
....
NEXT
This works and I can access all of the properties of the linkbutton
What I need to do is determine which linkbutton was clicked and then fire
off a click event for that button.
any suggestions?
Gary T.
When I fire off the repeater controls ItemCommand I execute the following...
For indx = 0 To rpContacts.Items.Count - 1
Dim btnMyContact As LinkButton =
CType(rpContacts.Items(indx).FindControl("btnContact"), LinkButton)
....
NEXT
This works and I can access all of the properties of the linkbutton
What I need to do is determine which linkbutton was clicked and then fire
off a click event for that button.
any suggestions?
Gary T.