Questo è il codice
Codice PHP:
<asp:ImageButton ID="CancellaArticolo" runat="server" ImageUrl="~/img/trash.gif" CommandArgument='<%# id %>'/>
Ok in ID (me lo sono fatto stampare prima) c'è un numero
Nel codice della pagina ho
Codice PHP:
Protected Sub CancellaArticolo_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles CancellaArticolo.Click
Dim b As ImageButton = CType(sender, ImageButton)
Response.Write(b.CommandArgument)
end sub
Al click del pulsante non vedo nulla...