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 Command Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A CommandEventArgs that contains the event data. The following CommandEventArgs properties provide information specific to this event.
Property Description
Command
[To be supplied.]
CommandArgument
[To be supplied.]

See Also

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