if Page.IsPostBack then
  dim dli as DataListItem
  for each dli in YourDataList.Items
   Dim lbvisibel As LinkButton
   lbvisibel = dli.FindControl("lbvisible" )
   if not lbvisibel is nothing then
         '.....
   end if 
  next
end if