Thanks for the link.

Now I've tried the following and it still doesn't work:
VB Code:
  1. AddHandler ibPOD.Command, New CommandEventHandler(AddressOf Me.lnkViewJob_Command)
However, the article does point out that the event handler needs to be associated on every page visit. However, my ImageButton control is added to a table in a Repeater and occurs in the following event:
VB Code:
  1. Private Sub Repeater1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.RepeaterItemEventArgs) Handles Repeater1.ItemDataBound
Perhaps therin lies the problem? I don't know how to get around it though....