Hi, I had some problems on setting the value for a variable when user clicks on the image button.
This is wat I have in the aspx file
<asp:ImageButton ID="NewBtn" runat="server" ImageUrl="image/plus.png" Width="24px" onclick = "newUser = 'True'"/>
At first i tried to declare the variable in code behind as follow
Dim newUser As Boolean
but it gave me an error : is not accessible in this context because it is 'Private'.
Then i change to
Protected newUser As Boolean
Another error shown: 'AddressOf' operand must be the name of a method (without parentheses).
S.O.S!~ I have no idea how to solve this..