hello i am trying to pass parameters from asp LinkButton to a sub routine and it doesn't work
this is the linkbutton
<asp:LinkButton runat="server" ID="linkId" OnClick="doSomething(10)">ID
</asp:LinkButton>
and this is my sub
Public Sub doSomething(ByVal mon As Integer)
MsgBox("this is the number : " & mon)
End Sub
can some one tell me how can we make this work in VB.net