Link to home
Start Free TrialLog in
Avatar of earngreen
earngreenFlag for United States of America

asked on

Click Event Handler

I have created an ASP 2.0 page this page has a button on it ad when I double click the button to create the click event handler, nothing happens. Has anyone experinced this before? How do I resolve?
Avatar of Dirk Haest
Dirk Haest
Flag of Belgium image

Alternative: You can add it through code ... (replace Button1 with the name of your button)

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

End Sub
ASKER CERTIFIED SOLUTION
Avatar of udhayakumard
udhayakumard
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
And choose the "Click" event.
Avatar of earngreen

ASKER

udhayakumard

You are correct. i just needed to set the Click Event in properties to True.

Thanks for the assistance