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!

LinkButton Command Event

[To be supplied.]

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

[Visual Basic]
Protected Sub LinkButtonName_Command( _
   ByVal sender As Object, _
   ByVal e As CommandEventArgs _
)
[C#]
protected void LinkButtonName_Command(
   object sender,
   CommandEventArgs e
);
[C++]
protected: void LinkButtonName_Command(
   Object* sender,
   CommandEventArgs* e
);
[JScript]
protected LinkButtonName_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

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