When I click on one of the imagebuttons in the datalist the onclick will fire, but how do I know which button has been clicked?
<asp:DataList ID="dtlProducten" runat="server" DataSourceID="dtsProducten" RepeatColumns="3" Width="274px">
<ItemTemplate>
<asp:Label ID="NaamLabel" runat="server" Text='<%# Eval("Naam") %>' />
: €<asp:Label ID="PrijsLabel" runat="server" Text='<%# Eval("Prijs", "{0:N}") %>' />
<br />
<asp:ImageButton ID="ibProduct" runat="server" BorderColor="#B5CC20" BorderStyle="Solid" Height="100px" ImageUrl='<%# Eval("Foto", "~/Pictures/{0}") %>' Width="100px" Onclick="ImageButtonProduct_Click"/>