NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ImageButton Click Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the Click event.

[Visual Basic]
Protected Sub ImageButtonName_Click( _
   ByVal sender As Object, _
   ByVal e As ImageClickEventArgs _
)
[C#]
protected void ImageButtonName_Click(
   object sender,
   ImageClickEventArgs e
);
[C++]
protected: void ImageButtonName_Click(
   Object* sender,
   ImageClickEventArgs* e
);
[JScript]
protected ImageButtonName_Click(
   sender : Object,
   e : ImageClickEventArgs
);

Parameters

sender
The source of the event.
e
An ImageClickEventArgs that contains the event data.

See Also

ImageButton Class | ImageButton MembersTopic | System.Web.UI.WebControls Namespace