I have a Button in a WebForm
I add a handler to the click event by writting that
OnClick="HMyHandler" in the button tag.

initially it didn't work.
so in the Page_Load() method I wrote
myButton.Click += new EventHandler(HMyHandler)

and then the handler was called twice ...

I'm puzzled, what's going on ?