Clue: Remember the ASP.NET's ImageButton type?
The ImageButton is the .NET type that represents a clickable image. It derives from the Image type and exposes an event called Command.
Programmatically you can add the Command event like this:
ImageButton img = new ImageButton();
img.Command += new CommandEventHandler(MyImgEvent_Command);
img.Command += new CommandEventHandler(MyImgEvent_Command);
Problem solved!
Be a part of our private list!
Enter your e-mail and access The Rabbit Way's exclusive offers.
![Reblog this post [with Zemanta]](http://img.zemanta.com/reblog_e.png?x-id=813871d9-3e6a-4d4a-91e2-2130db3ae011)
No comments:
Post a Comment